All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mperry.fg.FreeP1Monad.groovy Maven / Gradle / Ivy

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)
    }

}