Jaxon.Stream.from_enumerable

You're seeing just the function from_enumerable, go back to Jaxon.Stream module for more information.
Link to this function

from_enumerable(bin_stream)

View Source

Specs

from_enumerable(Enumerable.t()) :: event_stream()

Transform a binary stream into a stream of events.

iex(1)> Jaxon.Stream.from_enumerable([~s({"jaxon"), ~s(:"rocks","array":[1,2]})]) |> Enum.take(1)
[[:start_object, {:string, "jaxon"}]]