class MoreMath::Sequence

def each(&block)

Calls the +block+ for every element of this Sequence.
def each(&block)
  @elements.each(&block)
end