class Array

The extension on Array could be done for all Objects supporting [] and size.

Public Instance Methods

create_stream() click to toggle source

Creates a new Stream::CollectionStream on self.

    # File lib/stream.rb
757 def create_stream
758   Stream::CollectionStream.new self
759 end