Transforms the contents of a Functor.
This API is still experimental, so it may change or be removed in future versions. You should not rely on it for production applications.
forall F, a, b:
((a) => b) => (F a) => F b
where F is Functor
Transforms the contents of a Functor.
curry(2, (transformation, functor) => // eslint-disable-line no-magic-numbers
map(functor, transformation)
)