Vector
public static Vector<float> ConditionalSelect(Vector<int> condition, Vector<float> left, Vector<float> right)
public static Vector<double> ConditionalSelect(Vector<long> condition, Vector<double> left, Vector<double> right)
public static Vector<T> ConditionalSelect<T>(Vector<T> condition, Vector<T> left, Vector<T> right) where T : struct