Stream.run/1
defmodule Stream do
def run(stream)
end
Materializes the given stream.
This is useful when a stream needs to be run, for side effects, and there is no interest in its return result.
defmodule Stream do
def run(stream)
end
Materializes the given stream.
This is useful when a stream needs to be run, for side effects, and there is no interest in its return result.