sformat

Send the processed (formatted) input into a sink

  1. mstring sformat(mstring buffer, cstring fmt, Args args)
  2. mstring sformat(Buffer!(char) buffer, cstring fmt, Args args)
  3. bool sformat(FormatterSink sink, cstring fmt, Args args)
    bool
    sformat
    (
    Args...
    )
    (,
    cstring fmt
    ,
    Args args
    )

Parameters

sink FormatterSink

A delegate that will be called, possibly multiple times, with a portion of the result string

fmt cstring

Format string to use

args Args

Variadic arguments to format according to fmt

Return Value

Type: bool

If formatting was successful, returns true, false otherwise.

Meta