leftJustifier

fnauto leftJustifier(Range)(Range r, size_t width, dchar fillChar = ' ') if (isInputRange!Range && isSomeChar!(ElementEncodingType!Range) && !isConvertibleToString!Range)

Left justify s in a field width characters wide. fillChar is the character that will be used to fill up the space in the field that s doesn't fill.

Parameters

rstring or range of characters
widthminimum field width
fillCharused to pad end up to width characters

Returns

a lazy range of the left justified result

See Also

fnauto leftJustifier(Range)(auto ref Range r, size_t width, dchar fillChar = ' ') if (isConvertibleToString!Range)
No documentation available for this declaration.