class Lazily::Proxy

def each(&block)

def each(&block)
  return to_enum unless block
  @source.each(&block)
end

def initialize(source)

def initialize(source)
  @source = source
end

def inspect

def inspect
  "#<#{self.class}: #{@source.inspect}>"
end