Maps one function over each side of a Bifunctor.
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, c, d:
(F a b).((a) => c, (b) => d) => F c d
where F is Bifunctor
Maps one function over each side of a Bifunctor.
function(transformLeft, transformRight) {
return bimap(this, transformLeft, transformRight);
}