Stream.map/2
defmodule Stream do
def map(enumerable, fun)
end
Creates a stream that will apply the given function on enumeration.
defmodule Stream do
def map(enumerable, fun)
end
Creates a stream that will apply the given function on enumeration.