conditionally
inline fun <L, R> conditionally( test: Boolean, ifFalse: () -> L, ifTrue: () -> R): Either<L, R>
Content copied to clipboard
Will create an Either from the result of evaluating the first parameter using the functions provided on second and third parameters. Second parameter represents function for creating an Left in case of a false result of evaluation and third parameter will be used to create a Right in case of a true result.
Return
Right if evaluation succeed, Left otherwise