Monoids is a library for some generic Monoids that are very useful.
This library exposes
All
- Boolean newtype that combines values using&&
Any
- Boolean newtype that combines values using||
Dual
- Inverts the Combine operation of a monoidFirst
- Option newtype that combine takes the first element that is presentLast
- Option newtype that combine takes the last element that is presentProduct
- Numeric newtype that combines values using MultiplicationSum
- Numeric newtype that combines values using Addition
To use this project in an existing SBT project with Scala 2.11 or a later version, add the following dependencies to your
build.sbt
depending on your needs:
libraryDependencies ++= Seq(
"io.chrisdavenport" %% "monoids" % "<version>"
)