Clarify elementwise cmp reduces

Saying "elementwise (non-)equal" may suggest it returns a vector.
The comments should be clear that it instead reduces to a scalar.

Co-authored-by: Jacob Lifshay <programmerjake@gmail.com>
This commit is contained in:
Jubilee 2023-04-10 00:11:37 -07:00 committed by Jubilee Young
parent 71d4c36850
commit 92259a4a6c

View File

@ -709,7 +709,7 @@ where
Mask::from_int_unchecked(tfvec) Mask::from_int_unchecked(tfvec)
}; };
// Two vectors are equal if they are elementwise equal // Two vectors are equal if all elements are equal when compared elementwise
mask.all() mask.all()
} }
@ -722,7 +722,7 @@ where
Mask::from_int_unchecked(tfvec) Mask::from_int_unchecked(tfvec)
}; };
// Two vectors are non-equal if they are elementwise non-equal // Two vectors are non-equal if any elements are non-equal when compared elementwise
mask.any() mask.any()
} }
} }