Vector512<T>.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Equals(Object) |
Determines whether the specified object is equal to the current instance. |
Equals(Vector512<T>) |
Determines whether the specified Vector512<T> is equal to the current instance. |
Equals(Object)
- Source:
- Vector512_1.cs
- Source:
- Vector512_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 Vector512<T> and is equal to the current instance; otherwise, false
.
Applies to
Equals(Vector512<T>)
- Source:
- Vector512_1.cs
- Source:
- Vector512_1.cs
Determines whether the specified Vector512<T> is equal to the current instance.
public:
virtual bool Equals(System::Runtime::Intrinsics::Vector512<T> other);
public bool Equals (System.Runtime.Intrinsics.Vector512<T> other);
override this.Equals : System.Runtime.Intrinsics.Vector512<'T> -> bool
Public Function Equals (other As Vector512(Of T)) As Boolean
Parameters
- other
- Vector512<T>
The Vector512<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 vector (T
) is not supported.