FormatSpec.toString

Writes a string representation to an output range.

  1. string toString()
  2. void toString(OutputRange writer)
    struct FormatSpec(Char)
    const
    void
    toString
    (
    OutputRange
    )
    (
    ref OutputRange writer
    )
    if (
    isOutputRange!(OutputRange, char)
    )
    if (
    is(Unqual!Char == Char)
    )

Parameters

writer OutputRange

an output range, where the representation is written to

OutputRange

type of the output range

Meta