Returns the value from this Right or Left.
Example:
import arrow.core.Either.Leftimport arrow.core.Either.Rightimport arrow.core.mergefun test() { Right(12).merge() // Result: 12 Left(12).merge() // Result: 12}