Documentation

StrStartsWithCstr

StrStartsWithCstr Description Check if string starts with a fixed-length C-style string (Cstr).

Read More

StrStartsWithZstr

StrStartsWithZstr Description Check if string starts with a null-terminated string (Zstr).

Read More

StrStrip

StrStrip Description Strip leading and trailing whitespace (or optional custom characters) from the given Str object. Returns a new Str object. Original is unmodified. The returned Str must be deinited after use.

Read More

StrSwapCharAt

StrSwapCharAt Description Swap chars at given indices.

Read More

StrToF64

StrToF64 Description Convert string to double

Read More

StrToI64

StrToI64 Description Convert string to signed 64-bit integer

Read More

StrToU64

StrToU64 Description Convert string to unsigned 64-bit integer

Read More

StrTryReduceSpace

StrTryReduceSpace Description Try reducing memory footprint of string. This is to be used when we know actual allocated memory for vec is large, and we won’t need it in future, so we can reduce it to whatever’s required at the moment.

Read More

StrWriteFmtInternal

StrWriteFmtInternal Description Print out a formatted string with rust-style placeholders to given string o.

Read More

SysAbort

SysAbort Description Custom abort function that can be redirected for testing purposes. By default, this calls the standard abort() function. If a callback is set via SysSetAbortCallback, it calls the callback instead.

Read More