We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Traversable exercises the 15th is buggy.
Title: toStream will convert any Traversable to a Stream which is a lazy list where elements are evaluated as they are needed.
toStream
It expects a List instead of a Stream after take
take
The text was updated successfully, but these errors were encountered:
b44dccd
Merge pull request #33 from cstuncsik/traversable-stream-exercise
833496b
fix(test): fixes #31
No branches or pull requests
In Traversable exercises the 15th is buggy.
Title:
toStream
will convert any Traversable to a Stream which is a lazy list where elements are evaluated as they are needed.It expects a List instead of a Stream after
take
The text was updated successfully, but these errors were encountered: