We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the min/max horizontal reductions are named: min and max.
min
max
That is: a.max() returns the largest element in the vector.
a.max()
However, it isn't unthinkable that we might want to add vertical min/max methods some day: a.max(b) returning lane-wise min/max.
a.max(b)
I would be more comfortable with giving the horizontal min/max reductions a different name.
The text was updated successfully, but these errors were encountered:
These have been named min_element/max_element to differentiate them from the vertical min/max reductions.
min_element
max_element
Sorry, something went wrong.
v
No branches or pull requests
Currently the
min
/max
horizontal reductions are named:min
andmax
.That is:
a.max()
returns the largest element in the vector.However, it isn't unthinkable that we might want to add vertical
min
/max
methods some day:a.max(b)
returning lane-wise min/max.I would be more comfortable with giving the horizontal
min
/max
reductions a different name.The text was updated successfully, but these errors were encountered: