RCXString.this

Construct a RCXString from a slice s.

If the slice is immutable, assumes the slice is a literal or GC-allocated and does NOT copy it internally.

Warning: Subsequently deallocating s will cause the RCXString to dangle. If the slice has const or mutable characters, creates and manages a copy internally.

struct RCXString(E = immutable char, size_t maxSmallSize = 23, alias realloc = GC.realloc)
pure nothrow
this
(
C
)
(
C[] s
)
if (
is(Unqual!C == ME)
)

Meta