IntFlag.toString

Puts a string representation of this IntFlag into w. This overload will not allocate, unless std.range.primitives.put(w, ...) allocates.

  1. string toString()
  2. void toString(Writer w, FormatSpec!Char fmt)
    struct IntFlag
    pragma(inline, true) const
    void
    toString
    (
    Writer
    Char = char
    )
    (
    Writer w
    ,
    FormatSpec!Char fmt = (FormatSpec!Char).init
    )

Parameters

w Writer

An output range that will receive the string

fmt FormatSpec!Char

An optional format specifier

Meta