Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
3 references to Equals
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (2)
420return _lower.Equals(other._lower) 421&& _upper.Equals(other._upper);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
442public override bool Equals([NotNullWhen(true)] object? obj) => (obj is Vector64<T> other) && Equals(other);