copy

Make an copy of a string in unmanaged memory

T[]
copy
(
T
)
(
T[] b
)

Examples

auto str = "hello".dup;
auto c = copy(str);
assert(c == str);
Delete(c);

Meta