Searched defs:StrToNumResult (Results 1 – 1 of 1) sorted by relevance
30 template <typename T> struct StrToNumResult { struct35 LIBC_INLINE constexpr StrToNumResult(T value) in StrToNumResult() function37 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len) in StrToNumResult() function39 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len, int error) in StrToNumResult() function42 LIBC_INLINE constexpr bool has_error() { return error != 0; } in has_error()44 LIBC_INLINE constexpr operator T() { return value; } in T()