Vector64<T>.Equals Method

Definition

Overloads

Equals(Object)

Determines whether the specified object is equal to the current instance.

Equals(Vector64<T>)

Determines whether the specified Vector64<T> is equal to the current instance.

Equals(Object)

Source:
Vector64_1.cs
Source:
Vector64_1.cs
Source:
Vector64_1.cs

Determines whether the specified object is equal to the current instance.

public:
 override bool Equals(System::Object ^ obj);
public override bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean

Parameters

obj
Object

The object to compare with the current instance.

Returns

true if obj is a Vector64<T> and is equal to the current instance; otherwise, false.

Exceptions

The type of the current instance (T) is not supported.

Applies to

Equals(Vector64<T>)

Source:
Vector64_1.cs
Source:
Vector64_1.cs
Source:
Vector64_1.cs

Determines whether the specified Vector64<T> is equal to the current instance.

public:
 virtual bool Equals(System::Runtime::Intrinsics::Vector64<T> other);
public bool Equals (System.Runtime.Intrinsics.Vector64<T> other);
override this.Equals : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> bool
override this.Equals : System.Runtime.Intrinsics.Vector64<'T> -> bool
Public Function Equals (other As Vector64(Of T)) As Boolean

Parameters

other
Vector64<T>

The Vector64<T> to compare with the current instance.

Returns

true if other is equal to the current instance; otherwise, false.

Implements

Exceptions

The type of the current instance (T) is not supported.

Applies to