SafeInt.toString

Puts a string representation of this value 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 SafeInt(N, IntFlagPolicy _policy, Flag!"bitOps" bitOps = Yes.bitOps)
    const
    void
    toString
    (
    Writer
    Char = char
    )
    (
    Writer w
    ,
    FormatSpec!Char fmt = (FormatSpec!Char).init
    )
    if (
    isIntegral!N &&
    )

Parameters

w Writer

An output range that will receive the string

fmt FormatSpec!Char

An optional format specifier

Meta