コード例 #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());