ADTF  3.18.2
strings_format.h File Reference

Public API for string formatting functions. More...

Go to the source code of this file.

Namespaces

 a_util
 Serves as the root component, with common functionality documented in core functionality.
 
 a_util::strings
 Serves as component for string handling and conversion functionality.
 

Functions

std::string format (const char *str_format,...)
 printf()-like formatting of an input string. More...
 
std::string format (std::size_t initial_buffer_size, const char *str_format,...)
 printf()-like formatting of an input string with a given destination string buffer size. More...
 
std::string & format (std::string &buffer, std::size_t &pos, const char *str_format,...)
 printf()-like formatting of an input string with a given destination string buffer. More...
 
std::string toString (bool from)
 Convert the boolean value to its string representation. More...
 
std::string toString (std::int8_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::int16_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::int32_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::int64_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::uint8_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::uint16_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::uint32_t from)
 Convert the given value to a standard string. More...
 
std::string toString (std::uint64_t from)
 Convert the given value to a standard string. More...
 
std::string toString (float from)
 Convert the given value to a standard string. More...
 
std::string toString (double from)
 Convert the given value to a standard string. More...
 

Detailed Description

Public API for string formatting functions.

Definition in file strings_format.h.