Adds a new element at the end of self.
self
Parameters:
the element to add.
Returns:
a new queue.
43 44 45
# File 'lib/immutable/queue.rb', line 43 def snoc(x) queue(@front, Cons[x, @rear], @schedule) end