The OpenD Programming Language

parse

Integer parsing utilities.

  1. bool parse(inout(C)[] str, T value)
  2. bool parse(inout(C)[] str, T value)
    bool
    parse
    (
    T
    C
    )
    (
    ref scope inout(C)[] str
    ,
    out scope T value
    )
    if (
    (
    is(T == byte) ||
    is(T == short)
    )
    &&
    )

Return Value

Type: bool

true if success and false otherwise.

Meta