Home
last modified time | relevance | path

Searched defs:StrToNumResult (Results 1 – 1 of 1) sorted by relevance

/external/llvm-libc/src/__support/
Dstr_to_num_result.h18 template <typename T> struct StrToNumResult { struct
23 LIBC_INLINE constexpr StrToNumResult(T value) in StrToNumResult() argument
25 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len) in StrToNumResult() function
27 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len, int error) in StrToNumResult() function
30 LIBC_INLINE constexpr bool has_error() { return error != 0; } in has_error()
32 LIBC_INLINE constexpr operator T() { return value; } in T()