Stream.cycle/1
defmodule Stream do
def cycle(enumerable)
end
Creates a stream that cycles through the given enumerable
, infinitely.
defmodule Stream do
def cycle(enumerable)
end
Creates a stream that cycles through the given enumerable
, infinitely.