chsvlib
chsv helper source code
from_chars_result< CharType > Struct Template Reference

A type of the return value of the from_chars family of functions. More...

#include <chsvstringex.h>

Public Attributes

const CharType * ptr
 A type of a charecter of a string, for which Chusov::String::from_chars has been called. Supported types are char, wchar_t, and Chusov::String::ucp_t.
 
std::errc ec
 An error code resulting from the Chusov::String::from_chars operation. On success it is value-initialized. See std::errc.
 

Detailed Description

template<class CharType>
struct Chusov::String::from_chars_result< CharType >

A type of the return value of the from_chars family of functions.

Corresponds to the std::from_chars_result struct of the standard C++ library.

When the header is compiled with a C++17 compiler,

from_chars_result<char>

is an alias to std::from_chars_result.

See also
from_chars An implementation of the C++17 functions using means of C++14 and supporting strings of characters other than just char.

The documentation for this struct was generated from the following file: