public static void ClaimEqual <T>(this Span128 <T> lhs, Span128 <T> rhs, [Member] string caller = null, [File] string file = null, [Line] int?line = null) where T : struct => lhs.ReadOnly().ClaimEqual(rhs, caller, file, line);
ReadOnlySpan128(Span128 <T> src) { data = src.ReadOnly(); }
public static bool Identical <T>(this Span128 <T> lhs, Span128 <T> rhs) where T : struct => lhs.ReadOnly().Identical(rhs);