Ejemplo n.º 1
0
 public static Vector256 <ushort> negate(Vector256 <ushort> src)
 => add(BitUtil.flip(src), Vec256.Ones <ushort>());
Ejemplo n.º 2
0
 public static Vector256 <byte> negate(Vector256 <byte> src)
 => add(BitUtil.flip(src), Vec256.Ones <byte>());