Lines Matching refs:popFront
843 for (; !range1.empty; range1.popFront(), range2.popFront())
909 range.popFront();
927 void popFront()
934 range.popFront();
980 void popFront()
983 range.popFront();
1006 for (; !range.empty; range.popFront())
1037 && is(typeof((R r) => r.popFront));
1105 /// Implements the range interface primitive `popFront` for built-in arrays.
1106 void popFront(T)(/*scope*/ ref inout(T)[] array) pure nothrow @nogc @safe
1108 assert(array.length, "Attempting to popFront() past the end of an array of " ~ T.stringof);
1119 b.popFront();