Convenience function that calls popWhile() on the input argument and returns the consumed range to allow function pipelining. In addition this wrapper accepts rvalues.
assert("aaaaabcd".dropWhile!"a == 'a'" == "bcd");
See Implementation
Convenience function that calls popWhile() on the input argument and returns the consumed range to allow function pipelining. In addition this wrapper accepts rvalues.