src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (4)
465/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
466static bool IEqualityOperators<byte, byte, bool>.operator ==(byte left, byte right) => left == right;
468/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
469static bool IEqualityOperators<byte, byte, bool>.operator !=(byte left, byte right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (4)
1427/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
1428static bool IEqualityOperators<char, char, bool>.operator ==(char left, char right) => left == right;
1430/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
1431static bool IEqualityOperators<char, char, bool>.operator !=(char left, char right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (4)
552/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
553static bool IEqualityOperators<short, short, bool>.operator ==(short left, short right) => left == right;
555/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
556static bool IEqualityOperators<short, short, bool>.operator !=(short left, short right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (4)
594/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
595static bool IEqualityOperators<int, int, bool>.operator ==(int left, int right) => left == right;
597/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
598static bool IEqualityOperators<int, int, bool>.operator !=(int left, int right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (4)
591/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
592static bool IEqualityOperators<long, long, bool>.operator ==(long left, long right) => left == right;
594/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
595static bool IEqualityOperators<long, long, bool>.operator !=(long left, long right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (4)
531/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
532static bool IEqualityOperators<sbyte, sbyte, bool>.operator ==(sbyte left, sbyte right) => left == right;
534/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
535static bool IEqualityOperators<sbyte, sbyte, bool>.operator !=(sbyte left, sbyte right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (4)
470/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
471static bool IEqualityOperators<ushort, ushort, bool>.operator ==(ushort left, ushort right) => left == right;
473/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
474static bool IEqualityOperators<ushort, ushort, bool>.operator !=(ushort left, ushort right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (4)
535/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
536static bool IEqualityOperators<uint, uint, bool>.operator ==(uint left, uint right) => left == right;
538/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
539static bool IEqualityOperators<uint, uint, bool>.operator !=(uint left, uint right) => left != right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (4)
542/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Equality(TSelf, TOther)" />
543static bool IEqualityOperators<ulong, ulong, bool>.operator ==(ulong left, ulong right) => left == right;
545/// <inheritdoc cref="IEqualityOperators{TSelf, TOther, TResult}.op_Inequality(TSelf, TOther)" />
546static bool IEqualityOperators<ulong, ulong, bool>.operator !=(ulong left, ulong right) => left != right;