Package: effect
Module: Either
Returns an Either that swaps the error/success cases. This allows you to
use all methods on the error channel, possibly before flipping back.
Signature
declare const flip: <A, E>(self: Either<A, E>) => Either<E, A>
Since v2.0.0