class Symbol

Public Instance Methods

===(other) click to toggle source
# File lib/respondable.rb, line 20
def ===(other)
  if other.is_a?(Respondable)
    other._?(self)
  else
    self == other
  end
end