Skip to content
New issue

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

Missing parameter in Multiple Parameter List code example? #58

Open
mattkohl opened this issue Dec 21, 2017 · 0 comments
Open

Missing parameter in Multiple Parameter List code example? #58

mattkohl opened this issue Dec 21, 2017 · 0 comments

Comments

@mattkohl
Copy link
Contributor

in essential-scala/src/pages/sequencing/working-with-data.md, where fold is rewritten with multiple parameters:

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) ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant