Records

Functions

  • template <typename... Uint>
    size_t ParseInts (std::string_view string, Uint *... args)

    Parse a comma-separated list of integers of the form `,1,2,3,...,1000`,

    where the list must begin with a comma.

    Input integers may be decimal (42), hexadecimal (0x2a) or octal (052).

    Returns the number of elements parsed from the string.

    Defined at line 26 of file ../../zircon/system/ulib/uart/parse.h

  • template <typename... Uint>
    size_t ParseInts (std::string_view string, Uint *... args)

    Parse a comma-separated list of integers of the form `,1,2,3,...,1000`,

    where the list must begin with a comma.

    Input integers may be decimal (42), hexadecimal (0x2a) or octal (052).

    Returns the number of elements parsed from the string.

    Defined at line 26 of file ../../zircon/system/ulib/uart/parse.h

  • template <typename... Uint>
    size_t ParseInts (std::string_view string, Uint *... args)

    Parse a comma-separated list of integers of the form `,1,2,3,...,1000`,

    where the list must begin with a comma.

    Input integers may be decimal (42), hexadecimal (0x2a) or octal (052).

    Returns the number of elements parsed from the string.

    Defined at line 26 of file ../../zircon/system/ulib/uart/parse.h

  • template <typename... Uint>
    size_t ParseInts (std::string_view string, Uint *... args)

    Parse a comma-separated list of integers of the form `,1,2,3,...,1000`,

    where the list must begin with a comma.

    Input integers may be decimal (42), hexadecimal (0x2a) or octal (052).

    Returns the number of elements parsed from the string.

    Defined at line 26 of file ../../zircon/system/ulib/uart/parse.h

  • template <typename... Uint>
    void UnparseInts (FILE * out, Uint... args)

    Defined at line 84 of file ../../zircon/system/ulib/uart/parse.h

  • template <typename... Uint>
    void UnparseInts (FILE * outUint... args)

    Defined at line 84 of file ../../zircon/system/ulib/uart/parse.h

Concepts

template <typename Driver, typename... Args> MatchableDriver requires (Args &&...args) { { Driver::TryMatch(std::forward<Args>(args)...) } -> std::convertible_to<std::optional<uart::Config<Driver> >>; }

Defined at line 57 of file ../../zircon/system/ulib/uart/include/lib/uart/all.h

template <typename Drivertypename... Args> SelectableDriver requires (Args &&...args) { { Driver::TrySelect(std::forward<Args>(args)...) } -> std::convertible_to<_Bool>; }

Defined at line 64 of file ../../zircon/system/ulib/uart/include/lib/uart/all.h