Method: JsonProjection::Fifo#==
- Defined in:
- lib/json-projection/parser/fifo.rb
#==(other) ⇒ Object
33 34 35 36 |
# File 'lib/json-projection/parser/fifo.rb', line 33 def ==(other) return false unless other.is_a?(Fifo) return stack == other.stack end |