Returns a copy of the slice array.
$(D_PSYMBOL save) doesn't copy the array itself, but only the data pointer and the length.
Element type of array.
Built-in array.
A copy of the slice array.
ubyte[8] array; auto slice = array.save; assert(slice.length == array.length); slice.popFront(); assert(slice.length < array.length);
See Implementation
Returns a copy of the slice array.
$(D_PSYMBOL save) doesn't copy the array itself, but only the data pointer and the length.