formattedRead.formattedRead

  1. Tuple!Args formattedRead(Range r, const(Char)[] fmt)
    template formattedRead(Args...)
    Tuple!Args
    formattedRead
    (
    Range
    Char
    )
    (
    auto ref Range r
    ,
    const(Char)[] fmt
    )
    if (
    Args.length &&
    )
  2. uint formattedRead(Range r, const(Char)[] fmt, Args args)
  3. uint formattedRead(Range r, Args args)
  4. template formattedRead(alias fmt, Args...)

Parameters

r Range

an input range, where the formatted input is read from

fmt const(Char)[]
Range

the type of the input range r

Char

the character type used for fmt

Return Value

Type: Tuple!Args

A Tuple!Args with the elements filled.

Throws

A FormatException if reading did not succeed.

Meta