Created
August 3, 2014 02:59
-
-
Save davidandrzej/c125b7eef26b07354a01 to your computer and use it in GitHub Desktop.
Excerpted from https://github.com/scalaz/scalaz for instructional purposes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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