Skip to main content

Module strvec

Module strvec 

Source
Expand description

Thin wrapper around R character vector (STRSXP).

Provides safe construction and element insertion for string vectors.

Structsยง

ProtectedStrVec
GC-protected view over an R character vector (STRSXP).
ProtectedStrVecCowIter
Encoding-safe iterator over ProtectedStrVec.
ProtectedStrVecIter
Iterator over ProtectedStrVec with lifetime tied to the protection guard.
StrVec
Owned handle to an R character vector (STRSXP).
StrVecBuilder
Builder for constructing string vectors with efficient protection management.
StrVecCowIter
Iterator over StrVec elements as Option<Cow<'static, str>>.
StrVecIter
Iterator over StrVec elements as Option<&str>.