Checks if the elements of one vector are equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<bool> EqualToCore(
T right,
Vector<bool> result
)
Protected Overridable Function EqualToCore (
right As T,
result As Vector(Of Boolean)
) As Vector(Of Boolean)
protected:
virtual Vector<bool>^ EqualToCore(
T right,
Vector<bool>^ result
)
abstract EqualToCore :
right : 'T *
result : Vector<bool> -> Vector<bool>
override EqualToCore :
right : 'T *
result : Vector<bool> -> Vector<bool>
Parameters
- right
- Type: T
A constant. - result
- Type: Extreme.MathematicsVectorBoolean
The vector that is to hold the result. May be .
Return Value
Type:
VectorBooleanA boolean vector whose elements are
if the corresponding element in this vector
is less than
right, and
otherwise.
Reference