Exemplo n.º 1
0
 public static uint select(uint src, Part32x4 part)
 => Bits.gather(src, (uint)part);
Exemplo n.º 2
0
 public static T project<T>(uint src, Part32x4 part)
     where T : unmanaged
         => convert<T>(project(src,part));
Exemplo n.º 3
0
 public static uint ToScalar(this Part32x4 src)
 => (uint)src;
Exemplo n.º 4
0
 public static uint project(uint src, Part32x4 part)
     => Bits.scatter(src, (uint)part);