Expected.popFront

Range interface defined by empty, front, popFront. Yields one value if Expected has value.

If T == void, range interface isn't defined.

  1. bool empty [@property getter]
  2. T front [@property getter]
  3. void popFront()
    struct Expected(T, E = string, Hook = Abort)
    static if(!is(T == void))
    void
    popFront
    ()
    if (
    !is(E == void) &&
    (
    !is(T == void)
    )
    )

Meta