module Enumerable
Public Instance Methods
create_stream()
click to toggle source
If not an array the enumerable is converted to an array and then to a stream using a Stream::CollectionStream.
# File lib/stream.rb, line 582 def create_stream to_a.create_stream end