Skip to content

Instantly share code, notes, and snippets.

@bijancn
Created May 30, 2018 10:21
Show Gist options
  • Save bijancn/327129af054fbfc80bfb5db9ebebd73d to your computer and use it in GitHub Desktop.
Save bijancn/327129af054fbfc80bfb5db9ebebd73d to your computer and use it in GitHub Desktop.
trait Foldable[F[_]] {
def foldLeft[A, B](fa: F[A], b: B)(f: (B, A) => B): B
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment