Method: Queue#<<

Defined in:
lib/data_structures/queue.rb

#<<(el) ⇒ Object



32
33
34
# File 'lib/data_structures/queue.rb', line 32

def <<(el)
  @store << el
end