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