Vector<T>.Equality Operator

Returns whether two instances of vector are equal.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static bool operator ==(
	Vector<T>? left,
	Vector<T>? right
)

Parameters

left  Vector<T>
A vector.
right  Vector<T>
A vector.

Return Value

Boolean
true if the two vectors have the same length and identical elements; otherwise false.

See Also