fmtIntoList

fnIStr fmtIntoList(S = LStr, A...)(ref S list, bool canAppend, IStr fmtStr, A args) @safe nothrow

Formats a string using a list and returns the resulting formatted string. The list is cleared before writing if canAppend is false. For details on formatting behavior, see the fmtIntoBufferWithStrs function in the ascii module.

fnIStr fmtIntoList(S = LStr, A...)(ref S list, bool canAppend, InterpolationHeader header, A args, InterpolationFooter footer) @safe nothrow

Formats a string using a list and returns the resulting formatted string. The list is cleared before writing if canAppend is false. For details on formatting behavior, see the fmtIntoBufferWithStrs function in the ascii module.