replace_or_append!(chain)
TODO: Decompose into more Array like behavior
# File activesupport/lib/active_support/callbacks.rb, line 100 def replace_or_append!(chain) if index = index(chain) self[index] = chain else self << chain end self end