package bjc.funcdata.theory; import java.util.function.Function; /** * Represents a container or context some sort usually, but the precise * definition is that it represents exactly what it is defined as. * * @author ben * * @param * The value inside the functor. */ public interface Functor { /** * Converts a normal function to operate over values in a functor.. * * N.B: Even though the type signature implies that you can apply the resulting * function to any type of functor, it is only safe to call it on instances of * the type of functor you called fmap on.. * * @param * The argument of the function. * * @param * The return type of the function. * * @param func * The function to convert. * * @return The passed in function converted to work over a particular type of * functors. */ public Function, Functor> fmap(Function func); /** * Retrieve the thing inside this functor. * * @return The thing inside this functor. */ public ContainedType getValue(); }