Documentation

StrIterRemainingSize

StrIterRemainingSize Description Get remaining bytes left to read

Read More

StrIterSize

StrIterSize Description Get total size of string data in bytes

Read More

StrLast

StrLast Description Access last character in string

Read More

StrLStrip

StrLStrip Description Strip only leading whitespace (or optional custom characters) from the given Str object. Returns a new Str object. Original is unmodified.

Read More

StrMerge

StrMerge Description Merge two strings and store the result in first string. By default, this uses R-value semantics (preserves source string). 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

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