IntFlags.toString

Puts a string representation of the list of set flags 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 = (FormatSpec!Char).init)
    struct IntFlags
    pragma(inline)
    void
    toString
    const
    (
    Writer
    Char = char
    )
    (
    Writer w
    ,
    FormatSpec!Char fmt = (FormatSpec!Char).init
    )

Parameters

w
Type: Writer

An output range that will receive the string

fmt
Type: FormatSpec!Char

An optional format specifier

Meta