Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm-libc/src/__support/
H A Dstr_to_num_result.h30 template <typename T> struct StrToNumResult { struct
35 LIBC_INLINE constexpr StrToNumResult(T value) in StrToNumResult() function
37 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len) in StrToNumResult() function
39 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len, int error) in StrToNumResult() function
42 LIBC_INLINE constexpr bool has_error() { return error != 0; } in has_error()
44 LIBC_INLINE constexpr operator T() { return value; } in T()