Returns a value indicating whether two instances
of vector are equal.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator ==(
Vector<T> left,
Vector<T> right
)
Public Shared Operator = (
left As Vector(Of T),
right As Vector(Of T)
) As Boolean
public:
static bool operator ==(
Vector<T>^ left,
Vector<T>^ right
)
static let inline (=)
left : Vector<'T> *
right : Vector<'T> : bool
Parameters
- left
- Type: Extreme.MathematicsVectorT
A vector. - right
- Type: Extreme.MathematicsVectorT
A vector.
Return Value
Type:
Boolean if the two vectors have the
same length and identical elements; otherwise
.
Reference