to Outcome
An extension method on Either
Left("bad").toOutcome() // Failure("bad")
Right(None).toOutcome() // Absent
Right(Some("hi")).toOutcome() // Present("hi")
Content copied to clipboard
An extension method on Either
Left("bad").toOutcome() // Failure("bad")
Right(None).toOutcome() // Absent
Right(Some("hi")).toOutcome() // Present("hi")