Documentation

StrIterPeekAt

StrIterPeekAt Description Peek character at offset without advancing

Read More

StrIterPos

StrIterPos Description Get current read position pointer

Read More

StrIterPrev

StrIterPrev Description Move to previous character in string iterator

Read More

StrIterRead

StrIterRead Description Read character from iterator

Read More

StrIterRemainingLength

StrIterRemainingLength Description Get remaining elements left to read

Read More

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