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 essential-scala/src/pages/sequencing/working-with-data.md, where fold is rewritten with multiple parameters:
essential-scala/src/pages/sequencing/working-with-data.md
fold
def fold[B](end: B)(pair: (A, B) => B): B = this match { case End() => end case Pair(hd, tl) => pair(hd, tl.fold(end, pair)) }
Should the parameters of tl.fold(end, pair) be split into tl.fold(end)(pair) ?
tl.fold(end, pair)
tl.fold(end)(pair)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
essential-scala/src/pages/sequencing/working-with-data.md
, wherefold
is rewritten with multiple parameters:Should the parameters of
tl.fold(end, pair)
be split intotl.fold(end)(pair)
?The text was updated successfully, but these errors were encountered: