module Enumerable
Public Instance Methods
Source
# File lib/stream.rb 765 def create_stream 766 to_a.create_stream 767 end
If not an array the enumerable is converted to an array and then to a stream using a Stream::CollectionStream
.
# File lib/stream.rb 765 def create_stream 766 to_a.create_stream 767 end
If not an array the enumerable is converted to an array and then to a stream using a Stream::CollectionStream
.