Method: KQL::Filter#==
- Defined in:
- lib/kql/filter.rb
#==(other) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/kql/filter.rb', line 11 def ==(other) return false unless other.is_a?(Filter) other.node == node && other.tag == tag && other.matchers == matchers end |