A Kotlin library which provides some common functional monads.
This library is a simple set of tools that allow a developer to apply functional monads to their code.
Functional programming (FP) is by no means a "silver bullet". That said, often times when we apply functional concepts to our code, we end up with code that is easier to reason about, and easier to test. This library draws from existing concepts in other languages like Scala.
Please read the MonadiK Wiki for information on the contents and use of this library.
Also, see the API documentation for a detailed listing of all types and their functions/properties/etc.
monadik
binaries can be downloaded from Bintray.
You can add monadik
to your project using Gradle by adding the following to your build.gradle
dependencies:
compile 'com.github.rs3vans.monadik:monadik:1.1.0'
You can add monadik
to your project using Gradle by adding the following to your build.gradle
dependencies:
<dependency>
<groupId>com.github.rs3vans.monadik</groupId>
<artifactId>monadik</artifactId>
<version>1.1.0</version>
</dependency>
monadik
is released under the MIT License.