예제 #1
0
파일: BitString.x.cs 프로젝트: 0xCM/arrows
 public static BitString ToBitString <T>(this Memory <T> src)
     where T : struct
 => BitString.FromScalars(src);
예제 #2
0
파일: BitString.x.cs 프로젝트: 0xCM/arrows
 public static BitString ToBitString <T>(this Vec256 <T> src)
     where T : struct
 => BitString.FromScalars(src.ToSpan());
예제 #3
0
파일: BitString.x.cs 프로젝트: 0xCM/arrows
 public static BitString ToBitString <T>(this Span <T> src, BitSize?maxlen = null)
     where T : struct
 => BitString.FromScalars(src, maxlen);