Type alias Maybe<R>

Maybe<R>: Just<R> | Nothing<R>

Genric Maybe monad interface

As per classic Maybe monad implementation can eithr contain just a value or contain nothing Used throughout the library to represent optional return type, specifically return type of cancelled tasks

Type Parameters

  • R

    underlying value

Generated using TypeDoc