Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
8 references to Equals
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Numerics\Plane.cs (1)
189
public readonly bool Equals(Plane other) => this.AsVector128().
Equals
(other.AsVector128());
src\libraries\System.Private.CoreLib\src\System\Numerics\Quaternion.cs (1)
438
public readonly bool Equals(Quaternion other) => this.AsVector128().
Equals
(other.AsVector128());
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector2.cs (1)
1045
public readonly bool Equals(Vector2 other) => this.AsVector128().
Equals
(other.AsVector128());
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector3.cs (1)
1058
public readonly bool Equals(Vector3 other) => this.AsVector128().
Equals
(other.AsVector128());
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector4.cs (1)
1085
public readonly bool Equals(Vector4 other) => this.AsVector128().
Equals
(other.AsVector128());
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
386
public override bool Equals([NotNullWhen(true)] object? obj) => (obj is Vector128<T> other) &&
Equals
(other);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (2)
409
return _lower.
Equals
(other._lower)
410
&& _upper.
Equals
(other._upper);