Exemplo n.º 1
0
 public static BitString ToBitString <T>(this Memory <T> src)
     where T : struct
 => BitString.FromScalars(src);
Exemplo n.º 2
0
 public static BitString ToBitString <T>(this Vec256 <T> src)
     where T : struct
 => BitString.FromScalars(src.ToSpan());
Exemplo n.º 3
0
 public static BitString ToBitString <T>(this Span <T> src, BitSize?maxlen = null)
     where T : struct
 => BitString.FromScalars(src, maxlen);