コード例 #1
0
 public static Vector256 <ushort> negate(Vector256 <ushort> src)
 => add(BitUtil.flip(src), Vec256.Ones <ushort>());
コード例 #2
0
 public static Vector128 <ulong> negate(Vector128 <ulong> src)
 => add(BitUtil.flip(src), Vec128.Ones <ulong>());
コード例 #3
0
 public static Vector256 <byte> negate(Vector256 <byte> src)
 => add(BitUtil.flip(src), Vec256.Ones <byte>());
コード例 #4
0
 public static Vector128 <byte> negate(Vector128 <byte> src)
 => add(BitUtil.flip(src), Vec128.Ones <byte>());