internal static UInt64[] DeepCopy(this UInt64[] data) { if (data == null) { return(null); } var dst = new UInt64[data.Length]; data.DeepCopy_NoChecks(0, dst, 0, data.Length); return(dst); }
internal static void CopyBytes_NoChecks(this byte[] src, int srcOff, byte[] dst, int dstOff, int length) { src.DeepCopy_NoChecks(srcOff, dst, dstOff, length); }