Skip to content

Instantly share code, notes, and snippets.

@davidandrzej
Created August 3, 2014 02:59
Show Gist options
  • Save davidandrzej/c125b7eef26b07354a01 to your computer and use it in GitHub Desktop.
Save davidandrzej/c125b7eef26b07354a01 to your computer and use it in GitHub Desktop.
Excerpted from https://github.com/scalaz/scalaz for instructional purposes
trait Monoid[F] {
def zero: F
def append(f1: F, f2: => F): F
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment