input stripped of leading whitespace or characters
specified in the second argument.
Postconditions: input and the returned value will share the same tail (see sameTail).
auto stripLeft(Range)(Range input) if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range) &&
!isInfinite!Range && !isConvertibleToString!Range)Strips leading whitespace (as defined by isWhite) or as specified in the second argument.
input | string or forward range of characters |
chars | string of characters to be stripped |
input stripped of leading whitespace or characters
specified in the second argument.
Postconditions: input and the returned value will share the same tail (see sameTail).
_stripLeft