bimap

inline fun <L, R, T, U> Either<L, R>.bimap(fLeft: (L) -> T, fRight: (R) -> U): Either<T, U>

Map over Left and Right of this Either.

Important: This is a Public Preview API. It may be changed or removed at any time.