About 50 results
Open links in new tab
  1. std::to_string - cppreference.com

    Return value A string holding the converted value. Exceptions May throw std::bad_alloc from the std::string constructor. Notes With floating point types std::to_string may yield unexpected results as …

  2. std::to_string - cppreference.com

    Returns a string with a description of st. The description of a basic_stacktrace typically contains description of its entries, although the number of lines is not required to be equal to size().

  3. std::to_string - cppreference.com

    Return value A string with a description of f. Exceptions May throw implementation-defined exceptions. Notes Custom allocators support for this function is not provided, because the implementations …

  4. Strings library - cppreference.com

    Characters In the C++ standard library, a character is an object which, when treated sequentially, can represent text. The term means not only objects of character types, but also any value that can be …

  5. cppreference.com

    What links here Related changes Upload file Special pages Printable version Permanent link Page information

  6. std::bitset<N>::to_string - cppreference.com

    Converts the contents of the bitset to a string. Uses zero to represent bits with value of false and one to represent bits with value of true. The resulting string contains N characters with the first character …

  7. std::basic_string - cppreference.com

    Iterator invalidation References, pointers, and iterators referring to the elements of a basic_string may be invalidated by any standard library function taking a reference to non-const basic_string as an …

  8. std::to_wstring - cppreference.com

    Return value A wide string holding the converted value. Exceptions May throw std::bad_alloc from the std::wstring constructor. Example

  9. std::to_chars - cppreference.com

    Return value On success, returns a value of type std::to_chars_result such that ec equals value-initialized std::errc and ptr is the one-past-the-end pointer of the characters written. Note that the …

  10. Text processing library - cppreference.com

    Localization library The headers <locale> and <clocale> provide internationalization support for character classification and string collation, numeric, monetary, and date/time formatting and parsing, …