fmap<C> abstract method

Kind<F, C> fmap<C>(
  1. C f(
    1. A
    )
)

Implementation

Kind<F, C> fmap<C>(
  final C Function(A) f,
);