Interval.toString

Converts this interval to a string.

  1. string toString()
  2. void toString(Writer w)
    struct Interval(TP)
    const
    void
    toString
    (
    Writer
    )
    (
    ref Writer w
    )
    if (
    isOutputRange!(Writer, char)
    )

Parameters

w Writer

A char accepting output range

Return Value

Type: void

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

Meta