public static Vector256 <sbyte> op_Modulus(Vector256 <sbyte> left, Vector256 <sbyte> right) => Vector256.Create(Vector128 <sbyte> .op_Modulus(left.Lower, right.Lower), Vector128 <sbyte> .op_Modulus(left.Upper, right.Upper));
public static Vector256 <float> op_Modulus(Vector256 <float> left, Vector256 <float> right) => Vector256.Create(Vector128 <float> .op_Modulus(left.Lower, right.Lower), Vector128 <float> .op_Modulus(left.Upper, right.Upper));