FormatSpec.toString

Gives a string containing all of the member variables on their own line.

  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

A char accepting output range

Return Value

Type: void

A string when not using an output range; void otherwise.

Meta

Suggestion Box / Bug Report