address4

Parses a string containing an IPv4 address in dotted-decimal notation.

  1. Nullable!Address4 address4(R range)
    Nullable!Address4
    address4
    (
    R
    )
    ()
    if (
    isForwardRange!R &&
    is(Unqual!(ElementType!R) == char)
    &&
    hasLength!R
    )
  2. Nullable!Address4 address4(R range)

Parameters

R

Input range type.

range R

Stringish range containing the address.

Return Value

Type: Nullable!Address4

$(D_PSYMBOL Nullable) containing the address if the parsing was successful, or nothing otherwise.

Meta