leftJustifier
fn
auto 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
r | string or range of characters |
width | minimum field width |
fillChar | used to pad end up to width characters |
Returns
a lazy range of the left justified result