예제 #1
0
 public static string FormatHex <T>(this Vec128 <T> src, bool vectorize = true, char?sep = null)
     where T : struct
 => src.ToSpan().FormatHex(vectorize, sep);
예제 #2
0
파일: BitString.x.cs 프로젝트: 0xCM/arrows
 public static BitString ToBitString <T>(this Vec128 <T> src)
     where T : struct
 => BitString.FromScalars(src.ToSpan());