CokleisliK
open class CokleisliK<F, B>CokleisliK represents a function with the signature (Kind<F, A>) -> B
that is polymorphic on A, where F and B are fixed.
Subclasses of CokleisliK need to implement invoke.
- 
                  
                  Initializer DeclarationSwift public init()
- 
                  
                  Invokes this transformation. DeclarationSwift open func invoke<A>(_ fa: Kind<F, A>) -> BParametersfaInput to this function Return ValueTransformed input. 
- 
                  
                  Invokes this transformation. DeclarationSwift public func callAsFunction<A>(_ fa: Kind<F, A>) -> BParametersfaInput to this function Return ValueTransformed input. 
- 
                  
                  Composes this function with another one. DeclarationSwift public func andThen<H>(_ g: Function1<B, H>) -> CokleisliK<F, H>ParametersgFunction to compose with this one. Return ValueA function that transform the input with this function and the received one afterwards. 
- 
                  
                  Composes this function with another one. DeclarationSwift public func andThen<H>(_ g: @escaping (B) -> H) -> CokleisliK<F, H>ParametersgFunction to compose with this one. Return ValueA function that transform the input with this function and the received one afterwards. 
- 
                  
                  Composes this function with another one. DeclarationSwift public func compose<H>(_ g: Function1<B, H>) -> CokleisliK<F, H>ParametersgFunction to compose with this one. Return ValueA function that transform the input with the received function and this one afterwards. 
- 
                  
                  Composes this function with another one. DeclarationSwift public func compose<H>(_ g: @escaping (B) -> H) -> CokleisliK<F, H>ParametersgFunction to compose with this one. Return ValueA function that transform the input with the received function and this one afterwards. 
 
             Install in Dash
              Install in Dash
             CokleisliK Class Reference
        CokleisliK Class Reference