pub(crate) fn is_nonoverlapping<T>(
    src: *const T,
    dst: *const T,
    count: usize
) -> bool
🔬This is a nightly-only experimental API. (core_intrinsics)
Expand description

Checks whether the regions of memory starting at src and dst of size count * size_of::<T>() do not overlap.