class MoreMath::Sequence

def push(element)

+element+ as its last element.
Push +element+ on this Sequence and return a new Sequence instance with
def push(element)
  Sequence.new(@elements.dup.push(element))
end