method
duplicates?
v7.1.3.4 -
Show latest stable
- Class:
ActiveSupport::Callbacks::Callback
duplicates?(other)public
No documentation available.
# File activesupport/lib/active_support/callbacks.rb, line 323
def duplicates?(other)
case @filter
when Symbol
matches?(other.kind, other.filter)
else
false
end
end