stripLeft

fnauto 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.

Parameters

inputstring or forward range of characters
charsstring of characters to be stripped

Returns

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).

See Also

Generic stripping on ranges: _stripLeft
fnauto stripLeft(Range)(auto ref Range str) if (isConvertibleToString!Range)
No documentation available for this declaration.
fnauto stripLeft(Range, Char)(Range input, const(Char)[] chars) if (((isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)) || isConvertibleToString!Range) && isSomeChar!Char)

Ditto