43 #pragma mark NUMBER TO STRING FUNCTIONS
133 #pragma mark ARRAY TO STRING FUNCTIONS
145 std::string
to_string(Uint8* array,
size_t length,
size_t offset=0);
158 std::string
to_string(Sint16* array,
size_t length,
size_t offset=0);
171 std::string
to_string(Uint16* array,
size_t length,
size_t offset=0);
184 std::string
to_string(Sint32* array,
size_t length,
size_t offset=0);
197 std::string
to_string(Uint32* array,
size_t length,
size_t offset=0);
210 std::string
to_string(Sint64* array,
size_t length,
size_t offset=0);
223 std::string
to_string(Uint64* array,
size_t length,
size_t offset=0);
236 std::string
to_string(
float* array,
size_t length,
size_t offset=0);
249 std::string
to_string(
double* array,
size_t length,
size_t offset=0);
253 #pragma mark STRING TO NUMBER FUNCTIONS
268 Uint8
stou8(
const std::string& str, std::size_t* pos = 0,
int base = 10);
284 Sint16
stos16(
const std::string& str, std::size_t* pos = 0,
int base = 10);
300 Uint16
stou16(
const std::string& str, std::size_t* pos = 0,
int base = 10);
316 Sint32
stos32(
const std::string& str, std::size_t* pos = 0,
int base = 10);
332 Uint32
stou32(
const std::string& str, std::size_t* pos = 0,
int base = 10);
348 Sint64
stos64(
const std::string& str, std::size_t* pos = 0,
int base = 10);
364 Uint64
stou64(
const std::string& str, std::size_t* pos = 0,
int base = 10);
379 float stof(
const std::string& str, std::size_t* pos = 0);
394 double stod(
const std::string& str, std::size_t* pos = 0);
Uint64 stou64(const std::string &str, std::size_t *pos=0, int base=10)
Uint32 stou32(const std::string &str, std::size_t *pos=0, int base=10)
Sint64 stos64(const std::string &str, std::size_t *pos=0, int base=10)
float stof(const std::string &str, std::size_t *pos=0)
double stod(const std::string &str, std::size_t *pos=0)
Sint16 stos16(const std::string &str, std::size_t *pos=0, int base=10)
Uint16 stou16(const std::string &str, std::size_t *pos=0, int base=10)
std::string to_string(Uint8 value)
Sint32 stos32(const std::string &str, std::size_t *pos=0, int base=10)
Uint8 stou8(const std::string &str, std::size_t *pos=0, int base=10)
Definition: CUAnimationNode.h:52