Convenience function that calls popBackWhile() on the input argument and returns the consumed range to allow function pipelining. In addition this wrapper accepts rvalues.
assert("abcdefgh".dropBackWhile!"a > 'e'" == "abcde");
See Implementation
Convenience function that calls popBackWhile() on the input argument and returns the consumed range to allow function pipelining. In addition this wrapper accepts rvalues.