
com.github.mperry.fg.FreeP1Monad.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalgroovy-kind Show documentation
Show all versions of functionalgroovy-kind Show documentation
FunctionalGroovy enhances FunctionalJava for Groovy
The newest version!
package com.github.mperry.fg
import com.github.mperry.fg.typeclass.*
import fj.F
/**
* Created by MarkPerry on 29/11/2014.
*/
class FreeP1Monad extends Monad {
@Override
def FreeP1 flatMap(FreeP1 ma, F> f) {
ma.flatMap(f)
}
@Override
def FreeP1 unit(B b) {
new Return(b)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy