Documentation

StrMergeL

StrMergeL Description Merge two strings and store the result in first string, with L-value semantics. Data is copied from str2 into str. If a copy_init method is provided in str, each element from str2 will be copied using that method. Otherwise, a raw memory copy is performed.

Read More

StrMergeR

StrMergeR Description Merge two strings and store the result in first string, with R-value semantics. Data is copied from str2 into str. If a copy_init method is provided in str, each element from str2 will be copied using that method. Otherwise, a raw memory copy is performed.

Read More

StrPopBack

StrPopBack Description Pop char from string back.

Read More

StrPopFront

StrPopFront Description Pop char from string front.

Read More

StrPushBack

StrPushBack Description Push char into string.

Read More

StrPushBackCstr

StrPushBackCstr Description Push an array of chars with given length to the back of this string.

Read More

StrPushBackZstr

StrPushBackZstr Description Push a null-terminated string to the back of string.

Read More

StrPushCstr

StrPushCstr Description Push a array of characters with given length into this string at the given position.

Read More

StrPushFront

StrPushFront Description Push char into string front.

Read More

StrPushFrontCstr

StrPushFrontCstr Description Push a array of characters with given length to the front of this string

Read More