1 interface inheriting from IComparisonOperators
System.Private.CoreLib (1)
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)
547where T : IComparisonOperators<T, T, bool> 566where T : IComparisonOperators<T, T, bool> 583where T : IComparisonOperators<T, T, bool> 601where T : IComparisonOperators<T, T, bool> 618where T : IComparisonOperators<T, T, bool> => LessThan(y, x); 631where T : IComparisonOperators<T, T, bool> => ref LessThan(y, x, destination); 644where T : IComparisonOperators<T, T, bool> 659where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThan<T>, T>(x, y); 670where T : IComparisonOperators<T, T, bool> => LessThanAll(y, x); 683where T : IComparisonOperators<T, T, bool> 702where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanAny<T>, T>(x, y); 713where T : IComparisonOperators<T, T, bool> => LessThanAny(y, x); 728where T : IComparisonOperators<T, T, bool> 747where T : IComparisonOperators<T, T, bool> 764where T : IComparisonOperators<T, T, bool> 782where T : IComparisonOperators<T, T, bool> 799where T : IComparisonOperators<T, T, bool> => LessThanOrEqual(y, x); 812where T : IComparisonOperators<T, T, bool> => ref LessThanOrEqual(y, x, destination); 825where T : IComparisonOperators<T, T, bool> 840where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThanOrEqual<T>, T>(x, y); 851where T : IComparisonOperators<T, T, bool> => LessThanOrEqualAll(y, x); 864where T : IComparisonOperators<T, T, bool> 883where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanOrEqualAny<T>, T>(x, y); 894where T : IComparisonOperators<T, T, bool> => LessThanOrEqualAny(y, x); 909where T : IComparisonOperators<T, T, bool> 928where T : IComparisonOperators<T, T, bool> 945where T : IComparisonOperators<T, T, bool> 963where T : IComparisonOperators<T, T, bool> 980where T : IComparisonOperators<T, T, bool> => GreaterThan(y, x); 993where T : IComparisonOperators<T, T, bool> => ref GreaterThan(y, x, destination); 1006where T : IComparisonOperators<T, T, bool> 1021where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThan<T>, T>(x, y); 1032where T : IComparisonOperators<T, T, bool> => GreaterThanAll(y, x); 1045where T : IComparisonOperators<T, T, bool> 1064where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanAny<T>, T>(x, y); 1075where T : IComparisonOperators<T, T, bool> => GreaterThanAny(y, x); 1090where T : IComparisonOperators<T, T, bool> 1109where T : IComparisonOperators<T, T, bool> 1126where T : IComparisonOperators<T, T, bool> 1144where T : IComparisonOperators<T, T, bool> 1161where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqual(y, x); 1174where T : IComparisonOperators<T, T, bool> => ref GreaterThanOrEqual(y, x, destination); 1187where T : IComparisonOperators<T, T, bool> 1202where T : IComparisonOperators<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThanOrEqual<T>, T>(x, y); 1213where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqualAll(y, x); 1226where T : IComparisonOperators<T, T, bool> 1245where T : IComparisonOperators<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanOrEqualAny<T>, T>(x, y); 1256where T : IComparisonOperators<T, T, bool> => GreaterThanOrEqualAny(y, x);
System\Numerics\Tensors\netcore\TensorOperation.cs (8)
2303where T : IComparisonOperators<T, T, bool> 2335where T : IComparisonOperators<T, T, bool> 2392where T : IComparisonOperators<T, T, bool> 2424where T : IComparisonOperators<T, T, bool> 2481where T : IComparisonOperators<T, T, bool> 2513where T : IComparisonOperators<T, T, bool> 2570where T : IComparisonOperators<T, T, bool> 2602where T : IComparisonOperators<T, T, bool>
System.Private.CoreLib (144)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (8)
437/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 438static bool IComparisonOperators<byte, byte, bool>.operator <(byte left, byte right) => left < right; 440/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 441static bool IComparisonOperators<byte, byte, bool>.operator <=(byte left, byte right) => left <= right; 443/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 444static bool IComparisonOperators<byte, byte, bool>.operator >(byte left, byte right) => left > right; 446/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 447static bool IComparisonOperators<byte, byte, bool>.operator >=(byte left, byte right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\Char.cs (8)
1392/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1393static bool IComparisonOperators<char, char, bool>.operator <(char left, char right) => left < right; 1395/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1396static bool IComparisonOperators<char, char, bool>.operator <=(char left, char right) => left <= right; 1398/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1399static bool IComparisonOperators<char, char, bool>.operator >(char left, char right) => left > right; 1401/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 1402static bool IComparisonOperators<char, char, bool>.operator >=(char left, char right) => left >= right;
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\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\libraries\System.Private.CoreLib\src\System\Decimal.cs (4)
1014/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1017/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1020/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1023/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (4)
316/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 320/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 324/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 328/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
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\libraries\System.Private.CoreLib\src\System\Half.cs (4)
156/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 178/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 184/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 206/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (4)
1007/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1021/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1029/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1037/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (8)
531/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 532static bool IComparisonOperators<short, short, bool>.operator <(short left, short right) => left < right; 534/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 535static bool IComparisonOperators<short, short, bool>.operator <=(short left, short right) => left <= right; 537/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 538static bool IComparisonOperators<short, short, bool>.operator >(short left, short right) => left > right; 540/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 541static bool IComparisonOperators<short, short, bool>.operator >=(short left, short right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (8)
572/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 573static bool IComparisonOperators<int, int, bool>.operator <(int left, int right) => left < right; 575/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 576static bool IComparisonOperators<int, int, bool>.operator <=(int left, int right) => left <= right; 578/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 579static bool IComparisonOperators<int, int, bool>.operator >(int left, int right) => left > right; 581/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 582static bool IComparisonOperators<int, int, bool>.operator >=(int left, int right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (8)
569/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 570static bool IComparisonOperators<long, long, bool>.operator <(long left, long right) => left < right; 572/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 573static bool IComparisonOperators<long, long, bool>.operator <=(long left, long right) => left <= right; 575/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 576static bool IComparisonOperators<long, long, bool>.operator >(long left, long right) => left > right; 578/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 579static bool IComparisonOperators<long, long, bool>.operator >=(long left, long right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (8)
592/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 593static bool IComparisonOperators<nint, nint, bool>.operator <(nint left, nint right) => left < right; 595/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 596static bool IComparisonOperators<nint, nint, bool>.operator <=(nint left, nint right) => left <= right; 598/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 599static bool IComparisonOperators<nint, nint, bool>.operator >(nint left, nint right) => left > right; 601/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 602static bool IComparisonOperators<nint, nint, bool>.operator >=(nint left, nint right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (4)
362/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 365/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 368/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 371/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\IComparisonOperators.cs (1)
12where TSelf : IComparisonOperators<TSelf, TOther, TResult>?
src\libraries\System.Private.CoreLib\src\System\SByte.cs (8)
494/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 495static bool IComparisonOperators<sbyte, sbyte, bool>.operator <(sbyte left, sbyte right) => left < right; 497/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 498static bool IComparisonOperators<sbyte, sbyte, bool>.operator <=(sbyte left, sbyte right) => left <= right; 500/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 501static bool IComparisonOperators<sbyte, sbyte, bool>.operator >(sbyte left, sbyte right) => left > right; 503/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 504static bool IComparisonOperators<sbyte, sbyte, bool>.operator >=(sbyte left, sbyte right) => left >= right;
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\libraries\System.Private.CoreLib\src\System\SpanHelpers.T.cs (7)
3477where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3481where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3486where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> 3504where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> 3643where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3647where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool> => 3651where T : struct, IUnsignedNumber<T>, IComparisonOperators<T, T, bool>
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\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\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
1012/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 1019/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 1026/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 1033/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (8)
456/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 457static bool IComparisonOperators<ushort, ushort, bool>.operator <(ushort left, ushort right) => left < right; 459/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 460static bool IComparisonOperators<ushort, ushort, bool>.operator <=(ushort left, ushort right) => left <= right; 462/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 463static bool IComparisonOperators<ushort, ushort, bool>.operator >(ushort left, ushort right) => left > right; 465/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 466static bool IComparisonOperators<ushort, ushort, bool>.operator >=(ushort left, ushort right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (8)
495/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 496static bool IComparisonOperators<uint, uint, bool>.operator <(uint left, uint right) => left < right; 498/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 499static bool IComparisonOperators<uint, uint, bool>.operator <=(uint left, uint right) => left <= right; 501/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 502static bool IComparisonOperators<uint, uint, bool>.operator >(uint left, uint right) => left > right; 504/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 505static bool IComparisonOperators<uint, uint, bool>.operator >=(uint left, uint right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (8)
494/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 495static bool IComparisonOperators<ulong, ulong, bool>.operator <(ulong left, ulong right) => left < right; 497/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 498static bool IComparisonOperators<ulong, ulong, bool>.operator <=(ulong left, ulong right) => left <= right; 500/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 501static bool IComparisonOperators<ulong, ulong, bool>.operator >(ulong left, ulong right) => left > right; 503/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 504static bool IComparisonOperators<ulong, ulong, bool>.operator >=(ulong left, ulong right) => left >= right;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (8)
520/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThan(TSelf, TOther)" /> 521static bool IComparisonOperators<nuint, nuint, bool>.operator <(nuint left, nuint right) => left < right; 523/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" /> 524static bool IComparisonOperators<nuint, nuint, bool>.operator <=(nuint left, nuint right) => left <= right; 526/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" /> 527static bool IComparisonOperators<nuint, nuint, bool>.operator >(nuint left, nuint right) => left > right; 529/// <inheritdoc cref="IComparisonOperators{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" /> 530static bool IComparisonOperators<nuint, nuint, bool>.operator >=(nuint left, nuint right) => left >= right;
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net11.0\System.Runtime.Forwards.cs (1)
379[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Numerics.IComparisonOperators<,,>))]