Function scratchpad::uninitialized_boxed_slice_for_markers[][src]

pub unsafe fn uninitialized_boxed_slice_for_markers<T>(
    marker_count: usize
) -> Box<[T]> where
    T: ByteData

Returns a boxed slice of uninitialized data large enough for tracking of at least the specified number of allocation markers.

Safety

The contents of the boxed slice are left uninitialized; reading from and writing to the slice contents can trigger undefined behavior if not careful.

Examples

use scratchpad::uninitialized_boxed_slice_for_markers;

let buffer = unsafe {
    uninitialized_boxed_slice_for_markers::<usize>(32)
};
assert_eq!(buffer.len(), 32);