Expected.value

Undocumented in source. Be warned that the author may not have intended to support it.
  1. inout(T) value [@property getter]
  2. T value [@property getter]
    struct Expected(T, E = string, Hook = Abort)
    @property ref
    static if(!is(T == void))
    static if(!(!isChecked!Hook))
    T
    value
    ()
    if (
    !is(E == void) &&
    (
    !is(T == void)
    )
    )

Meta