Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
3 references to Equals
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
383
public override bool Equals([NotNullWhen(true)] object? obj) => (obj is Vector256<T> other) &&
Equals
(other);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (2)
409
return _lower.
Equals
(other._lower)
410
&& _upper.
Equals
(other._upper);