nxt.rcstring

Reference Counted Array.

Members

Aliases

RCString
alias RCString = RCXString!(immutable char)

Reference Counted (RC) version of string.

Structs

RCXString
struct RCXString(E = immutable char, size_t maxSmallSize = 23, alias realloc = GC.realloc)

Reference Counted Array. Configured with character type E, maximum length for the small string optimization, and the allocation function, which must have the same semantics as realloc.

See Also

Meta