Searched defs:StrToNumResult (Results 1 – 1 of 1) sorted by relevance
18 template <typename T> struct StrToNumResult { struct23 LIBC_INLINE constexpr StrToNumResult(T value) in StrToNumResult() argument25 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len) in StrToNumResult() function27 LIBC_INLINE constexpr StrToNumResult(T value, ptrdiff_t parsed_len, int error) in StrToNumResult() function30 LIBC_INLINE constexpr bool has_error() { return error != 0; } in has_error()32 LIBC_INLINE constexpr operator T() { return value; } in T()