8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hello! Thanks for making sweet_xml!
The following code hangs:
"<feed></feed>" |> stream_tags(:feed) |> Stream.take(1) |> Enum.to_list
... but removing the Stream.take lets the code run to completion as expected:
"<feed></feed>" |> stream_tags(:feed) |> Enum.to_list