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)
    struct IntFlags
    pragma(inline) 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