1 interface inheriting from IComparisonOperators
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\INumber.cs (1)
14IComparisonOperators<TSelf, TSelf, bool>,
201 references to IComparisonOperators
System.Numerics.Tensors (56)
System\Numerics\Tensors\netcore\Tensor.cs (48)
602where T : IComparisonOperators<T, T, bool> 621where T : IComparisonOperators<T, T, bool> 638where T : IComparisonOperators<T, T, bool> 656where T : IComparisonOperators<T, T, bool> 673where T : IComparisonOperators<T, T, bool> => LessThan(y, x); 686where T : IComparisonOperators<T, T, bool> => ref LessThan(y, x, destination); 699where T : IComparisonOperators<T, T, bool> 714where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThan<T>, T>(x, y); 725where T : IComparisonOperators<T, T, bool> => LessThanAll(y, x); 738where T : IComparisonOperators<T, T, bool> 757where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanAny<T>, T>(x, y); 768where T : IComparisonOperators<T, T, bool> => LessThanAny(y, x); 783where T : IComparisonOperators<T, T, bool> 802where T : IComparisonOperators<T, T, bool> 819where T : IComparisonOperators<T, T, bool> 837where T : IComparisonOperators<T, T, bool> 854where T : IComparisonOperators<T, T, bool> => LessThanOrEqual(y, x); 867where T : IComparisonOperators<T, T, bool> => ref LessThanOrEqual(y, x, destination); 880where T : IComparisonOperators<T, T, bool> 895where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThanOrEqual<T>, T>(x, y); 906where T : IComparisonOperators<T, T, bool> => LessThanOrEqualAll(y, x); 919where T : IComparisonOperators<T, T, bool> 938where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanOrEqualAny<T>, T>(x, y); 949where T : IComparisonOperators<T, T, bool> => LessThanOrEqualAny(y, x); 964where T : IComparisonOperators<T, T, bool> 983where T : IComparisonOperators<T, T, bool> 1000where T : IComparisonOperators<T, T, bool> 1018where T : IComparisonOperators<T, T, bool> 1035where T : IComparisonOperators<T, T, bool> => GreaterThan(y, x); 1048where T : IComparisonOperators<T, T, bool> => ref GreaterThan(y, x, destination); 1061where T : IComparisonOperators<T, T, bool> 1076where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThan<T>, T>(x, y); 1087where T : IComparisonOperators<T, T, bool> => GreaterThanAll(y, x); 1100where T : IComparisonOperators<T, T, bool> 1119where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanAny<T>, T>(x, y); 1130where T : IComparisonOperators<T, T, bool> => GreaterThanAny(y, x); 1145where T : IComparisonOperators<T, T, bool> 1164where T : IComparisonOperators<T, T, bool> 1181where T : IComparisonOperators<T, T, bool> 1199where T : IComparisonOperators<T, T, bool> 1216where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqual(y, x); 1229where T : IComparisonOperators<T, T, bool> => ref GreaterThanOrEqual(y, x, destination); 1242where T : IComparisonOperators<T, T, bool> 1257where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThanOrEqual<T>, T>(x, y); 1268where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqualAll(y, x); 1281where T : IComparisonOperators<T, T, bool> 1300where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanOrEqualAny<T>, T>(x, y); 1311where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqualAny(y, x);
System\Numerics\Tensors\netcore\TensorOperation.cs (8)
2323where T : IComparisonOperators<T, T, bool> 2355where T : IComparisonOperators<T, T, bool> 2412where T : IComparisonOperators<T, T, bool> 2444where T : IComparisonOperators<T, T, bool> 2501where T : IComparisonOperators<T, T, bool> 2533where T : IComparisonOperators<T, T, bool> 2590where T : IComparisonOperators<T, T, bool> 2622where T : IComparisonOperators<T, T, bool>
System.Private.CoreLib (144)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (8)
432/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 433static bool IComparisonOperators<byte, byte, bool>.operator <(byte left, byte right) => left < right; 435/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 436static bool IComparisonOperators<byte, byte, bool>.operator <=(byte left, byte right) => left <= right; 438/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 439static bool IComparisonOperators<byte, byte, bool>.operator >(byte left, byte right) => left > right; 441/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 442static bool IComparisonOperators<byte, byte, bool>.operator >=(byte left, byte right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (8)
1394/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1395static bool IComparisonOperators<char, char, bool>.operator <(char left, char right) => left < right; 1397/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1398static bool IComparisonOperators<char, char, bool>.operator <=(char left, char right) => left <= right; 1400/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1401static bool IComparisonOperators<char, char, bool>.operator >(char left, char right) => left > right; 1403/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 1404static bool IComparisonOperators<char, char, bool>.operator >=(char left, char right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTime.cs (4)
1866/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1869/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1872/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1875/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTimeOffset.cs (4)
994/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 998/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1002/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1006/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (4)
1008/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1011/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1014/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1017/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (4)
318/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 322/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 326/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 330/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (4)
1589/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1650/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1711/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1772/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (4)
159/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 188/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 195/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 224/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (4)
995/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1009/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1017/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1025/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (8)
519/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 520static bool IComparisonOperators<short, short, bool>.operator <(short left, short right) => left < right; 522/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 523static bool IComparisonOperators<short, short, bool>.operator <=(short left, short right) => left <= right; 525/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 526static bool IComparisonOperators<short, short, bool>.operator >(short left, short right) => left > right; 528/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 529static bool IComparisonOperators<short, short, bool>.operator >=(short left, short right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (8)
561/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 562static bool IComparisonOperators<int, int, bool>.operator <(int left, int right) => left < right; 564/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 565static bool IComparisonOperators<int, int, bool>.operator <=(int left, int right) => left <= right; 567/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 568static bool IComparisonOperators<int, int, bool>.operator >(int left, int right) => left > right; 570/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 571static bool IComparisonOperators<int, int, bool>.operator >=(int left, int right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (8)
558/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 559static bool IComparisonOperators<long, long, bool>.operator <(long left, long right) => left < right; 561/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 562static bool IComparisonOperators<long, long, bool>.operator <=(long left, long right) => left <= right; 564/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 565static bool IComparisonOperators<long, long, bool>.operator >(long left, long right) => left > right; 567/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 568static bool IComparisonOperators<long, long, bool>.operator >=(long left, long right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (8)
591/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 592static bool IComparisonOperators<nint, nint, bool>.operator <(nint left, nint right) => left < right; 594/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 595static bool IComparisonOperators<nint, nint, bool>.operator <=(nint left, nint right) => left <= right; 597/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 598static bool IComparisonOperators<nint, nint, bool>.operator >(nint left, nint right) => left > right; 600/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 601static bool IComparisonOperators<nint, nint, bool>.operator >=(nint left, nint right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (4)
356/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 359/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 362/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 365/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\IComparisonOperators.cs (1)
12where TSelf : IComparisonOperators<TSelf, TOther, TResult>?
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (8)
498/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 499static bool IComparisonOperators<sbyte, sbyte, bool>.operator <(sbyte left, sbyte right) => left < right; 501/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 502static bool IComparisonOperators<sbyte, sbyte, bool>.operator <=(sbyte left, sbyte right) => left <= right; 504/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 505static bool IComparisonOperators<sbyte, sbyte, bool>.operator >(sbyte left, sbyte right) => left > right; 507/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 508static bool IComparisonOperators<sbyte, sbyte, bool>.operator >=(sbyte left, sbyte right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (4)
308/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 312/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 316/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 320/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SpanHelpers.T.cs (7)
3857where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3861where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3866where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> 3884where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> 4023where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 4027where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 4031where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool>
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (4)
243/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 252/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 261/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 270/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeSpan.cs (4)
949/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 952/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 955/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 958/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
1277/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1284/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1291/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1298/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (8)
437/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 438static bool IComparisonOperators<ushort, ushort, bool>.operator <(ushort left, ushort right) => left < right; 440/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 441static bool IComparisonOperators<ushort, ushort, bool>.operator <=(ushort left, ushort right) => left <= right; 443/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 444static bool IComparisonOperators<ushort, ushort, bool>.operator >(ushort left, ushort right) => left > right; 446/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 447static bool IComparisonOperators<ushort, ushort, bool>.operator >=(ushort left, ushort right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (8)
502/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 503static bool IComparisonOperators<uint, uint, bool>.operator <(uint left, uint right) => left < right; 505/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 506static bool IComparisonOperators<uint, uint, bool>.operator <=(uint left, uint right) => left <= right; 508/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 509static bool IComparisonOperators<uint, uint, bool>.operator >(uint left, uint right) => left > right; 511/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 512static bool IComparisonOperators<uint, uint, bool>.operator >=(uint left, uint right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (8)
509/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 510static bool IComparisonOperators<ulong, ulong, bool>.operator <(ulong left, ulong right) => left < right; 512/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 513static bool IComparisonOperators<ulong, ulong, bool>.operator <=(ulong left, ulong right) => left <= right; 515/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 516static bool IComparisonOperators<ulong, ulong, bool>.operator >(ulong left, ulong right) => left > right; 518/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 519static bool IComparisonOperators<ulong, ulong, bool>.operator >=(ulong left, ulong right) => left >= right;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (8)
518/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 519static bool IComparisonOperators<nuint, nuint, bool>.operator <(nuint left, nuint right) => left < right; 521/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 522static bool IComparisonOperators<nuint, nuint, bool>.operator <=(nuint left, nuint right) => left <= right; 524/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 525static bool IComparisonOperators<nuint, nuint, bool>.operator >(nuint left, nuint right) => left > right; 527/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 528static bool IComparisonOperators<nuint, nuint, bool>.operator >=(nuint left, nuint right) => left >= right;
System.Runtime (1)
src\runtime\artifacts\obj\System.Runtime\Release\net11.0\System.Runtime.Forwards.cs (1)
388[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Numerics.IComparisonOperators<,,>))]