Maybe.get

  1. Arguments[n] get [@property getter]
    struct Maybe(Arguments...)
    @property ref
    Arguments[n]
    get
    (
    size_t n
    )
    ()
    if (
    n < Arguments.length
    )
  2. Tuple!Arguments get [@property getter]

Parameters

n

Value position in the tuple.

Return Value

Type: Arguments[n]

nth value in the tuple.

Meta