Interface MaybeNothing

Hierarchy

Properties

Properties

get: ((this, key, defaultValue) => any)

Type declaration

    • (this, key, defaultValue): any
    • Parameters

      • this: Maybe<any>
      • key: string
      • defaultValue: any

      Returns any

join: ((this) => Maybe<any>)

Type declaration

map: (<B>(this, f) => Maybe<B>)

Type declaration

    • <B>(this, f): Maybe<B>
    • Type Parameters

      • B

      Parameters

      • this: Maybe<any>
      • f: ((x) => B)
          • (x): B
          • Parameters

            • x: any

            Returns B

      Returns Maybe<B>

nothing: null
toValue: ((this, defaultValue) => Maybe<any>)

Type declaration

    • (this, defaultValue): Maybe<any>
    • Parameters

      • this: Maybe<any>
      • defaultValue: any

      Returns Maybe<any>

Generated using TypeDoc