lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
|
Spezialize this class to make your string class compatible with the nullterminated character range class. More...
#include <nullterminated.h>
Static Public Member Functions | |
static const Char * | from (const Compatible &from) |
Converts an object of your type into a nullterminated character range, returning the beginning of the range. | |
static const Char * | from (const Compatible &from, const Char *begin) |
Converts an object of your type into a nullterminated character range, returning the end of the range (must be null character), nullptr if unknown. | |
static Compatible | to (const Char *begin) |
Converts a nullterminated character range into an object of your type. | |
static Compatible | to (const Char *begin, const Char *end) |
Converts a nullterminated character range into an object of your type. |
Spezialize this class to make your string class compatible with the nullterminated character range class.