Maybe

typealias Maybe<Ok> = Outcome<Ok, Unit>

Alias for a Outcome used when only the Ok information is important.

This is equivalent to a Java Option or Kotlin's nullable types, but comes with the facilities provided by Outcome (and can be used in all the same places).