Method: RDL::Type::WildQuery#==

Defined in:
lib/rdl/types/wild_query.rb

#==(other) ⇒ Object Also known as: eql?



18
19
20
21
22
# File 'lib/rdl/types/wild_query.rb', line 18

def ==(other)
  return false if other.nil?
  other = other.canonical
  return (other.instance_of? WildQuery)
end