1 interface inheriting from IComparisonOperators
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Numerics\INumber.cs (1)
14
IComparisonOperators
<TSelf, TSelf, bool>,
201 references to IComparisonOperators
System.Numerics.Tensors (56)
System\Numerics\Tensors\netcore\Tensor.cs (48)
547
where T :
IComparisonOperators
<T, T, bool>
566
where T :
IComparisonOperators
<T, T, bool>
583
where T :
IComparisonOperators
<T, T, bool>
601
where T :
IComparisonOperators
<T, T, bool>
618
where T :
IComparisonOperators
<T, T, bool> => LessThan(y, x);
631
where T :
IComparisonOperators
<T, T, bool> => ref LessThan(y, x, destination);
644
where T :
IComparisonOperators
<T, T, bool>
659
where T :
IComparisonOperators
<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThan<T>, T>(x, y);
670
where T :
IComparisonOperators
<T, T, bool> => LessThanAll(y, x);
683
where T :
IComparisonOperators
<T, T, bool>
702
where T :
IComparisonOperators
<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanAny<T>, T>(x, y);
713
where T :
IComparisonOperators
<T, T, bool> => LessThanAny(y, x);
728
where T :
IComparisonOperators
<T, T, bool>
747
where T :
IComparisonOperators
<T, T, bool>
764
where T :
IComparisonOperators
<T, T, bool>
782
where T :
IComparisonOperators
<T, T, bool>
799
where T :
IComparisonOperators
<T, T, bool> => LessThanOrEqual(y, x);
812
where T :
IComparisonOperators
<T, T, bool> => ref LessThanOrEqual(y, x, destination);
825
where T :
IComparisonOperators
<T, T, bool>
840
where T :
IComparisonOperators
<T, T, bool> => TensorOperation.Invoke<TensorOperation.GreaterThanOrEqual<T>, T>(x, y);
851
where T :
IComparisonOperators
<T, T, bool> => LessThanOrEqualAll(y, x);
864
where T :
IComparisonOperators
<T, T, bool>
883
where T :
IComparisonOperators
<T, T, bool> => !TensorOperation.Invoke<TensorOperation.GreaterThanOrEqualAny<T>, T>(x, y);
894
where T :
IComparisonOperators
<T, T, bool> => LessThanOrEqualAny(y, x);
909
where T :
IComparisonOperators
<T, T, bool>
928
where T :
IComparisonOperators
<T, T, bool>
945
where T :
IComparisonOperators
<T, T, bool>
963
where T :
IComparisonOperators
<T, T, bool>
980
where T :
IComparisonOperators
<T, T, bool> => GreaterThan(y, x);
993
where T :
IComparisonOperators
<T, T, bool> => ref GreaterThan(y, x, destination);
1006
where T :
IComparisonOperators
<T, T, bool>
1021
where T :
IComparisonOperators
<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThan<T>, T>(x, y);
1032
where T :
IComparisonOperators
<T, T, bool> => GreaterThanAll(y, x);
1045
where T :
IComparisonOperators
<T, T, bool>
1064
where T :
IComparisonOperators
<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanAny<T>, T>(x, y);
1075
where T :
IComparisonOperators
<T, T, bool> => GreaterThanAny(y, x);
1090
where T :
IComparisonOperators
<T, T, bool>
1109
where T :
IComparisonOperators
<T, T, bool>
1126
where T :
IComparisonOperators
<T, T, bool>
1144
where T :
IComparisonOperators
<T, T, bool>
1161
where T :
IComparisonOperators
<T, T, bool> => GreaterThanOrEqual(y, x);
1174
where T :
IComparisonOperators
<T, T, bool> => ref GreaterThanOrEqual(y, x, destination);
1187
where T :
IComparisonOperators
<T, T, bool>
1202
where T :
IComparisonOperators
<T, T, bool> => TensorOperation.Invoke<TensorOperation.LessThanOrEqual<T>, T>(x, y);
1213
where T :
IComparisonOperators
<T, T, bool> => GreaterThanOrEqualAll(y, x);
1226
where T :
IComparisonOperators
<T, T, bool>
1245
where T :
IComparisonOperators
<T, T, bool> => !TensorOperation.Invoke<TensorOperation.LessThanOrEqualAny<T>, T>(x, y);
1256
where T :
IComparisonOperators
<T, T, bool> => GreaterThanOrEqualAny(y, x);
System\Numerics\Tensors\netcore\TensorOperation.cs (8)
2303
where T :
IComparisonOperators
<T, T, bool>
2335
where T :
IComparisonOperators
<T, T, bool>
2392
where T :
IComparisonOperators
<T, T, bool>
2424
where T :
IComparisonOperators
<T, T, bool>
2481
where T :
IComparisonOperators
<T, T, bool>
2513
where T :
IComparisonOperators
<T, T, bool>
2570
where T :
IComparisonOperators
<T, T, bool>
2602
where 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)" />
438
static bool
IComparisonOperators
<byte, byte, bool>.operator <(byte left, byte right) => left < right;
440
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
441
static bool
IComparisonOperators
<byte, byte, bool>.operator <=(byte left, byte right) => left <= right;
443
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
444
static bool
IComparisonOperators
<byte, byte, bool>.operator >(byte left, byte right) => left > right;
446
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
447
static 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)" />
1393
static bool
IComparisonOperators
<char, char, bool>.operator <(char left, char right) => left < right;
1395
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
1396
static bool
IComparisonOperators
<char, char, bool>.operator <=(char left, char right) => left <= right;
1398
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
1399
static bool
IComparisonOperators
<char, char, bool>.operator >(char left, char right) => left > right;
1401
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
1402
static 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)" />
532
static bool
IComparisonOperators
<short, short, bool>.operator <(short left, short right) => left < right;
534
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
535
static bool
IComparisonOperators
<short, short, bool>.operator <=(short left, short right) => left <= right;
537
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
538
static bool
IComparisonOperators
<short, short, bool>.operator >(short left, short right) => left > right;
540
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
541
static 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)" />
573
static bool
IComparisonOperators
<int, int, bool>.operator <(int left, int right) => left < right;
575
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
576
static bool
IComparisonOperators
<int, int, bool>.operator <=(int left, int right) => left <= right;
578
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
579
static bool
IComparisonOperators
<int, int, bool>.operator >(int left, int right) => left > right;
581
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
582
static 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)" />
570
static bool
IComparisonOperators
<long, long, bool>.operator <(long left, long right) => left < right;
572
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
573
static bool
IComparisonOperators
<long, long, bool>.operator <=(long left, long right) => left <= right;
575
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
576
static bool
IComparisonOperators
<long, long, bool>.operator >(long left, long right) => left > right;
578
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
579
static 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)" />
593
static bool
IComparisonOperators
<nint, nint, bool>.operator <(nint left, nint right) => left < right;
595
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
596
static bool
IComparisonOperators
<nint, nint, bool>.operator <=(nint left, nint right) => left <= right;
598
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
599
static bool
IComparisonOperators
<nint, nint, bool>.operator >(nint left, nint right) => left > right;
601
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
602
static 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)
12
where 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)" />
495
static bool
IComparisonOperators
<sbyte, sbyte, bool>.operator <(sbyte left, sbyte right) => left < right;
497
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
498
static bool
IComparisonOperators
<sbyte, sbyte, bool>.operator <=(sbyte left, sbyte right) => left <= right;
500
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
501
static bool
IComparisonOperators
<sbyte, sbyte, bool>.operator >(sbyte left, sbyte right) => left > right;
503
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
504
static 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)
3477
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool> =>
3481
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool> =>
3486
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool>
3504
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool>
3643
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool> =>
3647
where T : struct, IUnsignedNumber<T>,
IComparisonOperators
<T, T, bool> =>
3651
where 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)" />
457
static bool
IComparisonOperators
<ushort, ushort, bool>.operator <(ushort left, ushort right) => left < right;
459
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
460
static bool
IComparisonOperators
<ushort, ushort, bool>.operator <=(ushort left, ushort right) => left <= right;
462
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
463
static bool
IComparisonOperators
<ushort, ushort, bool>.operator >(ushort left, ushort right) => left > right;
465
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
466
static 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)" />
496
static bool
IComparisonOperators
<uint, uint, bool>.operator <(uint left, uint right) => left < right;
498
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
499
static bool
IComparisonOperators
<uint, uint, bool>.operator <=(uint left, uint right) => left <= right;
501
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
502
static bool
IComparisonOperators
<uint, uint, bool>.operator >(uint left, uint right) => left > right;
504
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
505
static 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)" />
495
static bool
IComparisonOperators
<ulong, ulong, bool>.operator <(ulong left, ulong right) => left < right;
497
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
498
static bool
IComparisonOperators
<ulong, ulong, bool>.operator <=(ulong left, ulong right) => left <= right;
500
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
501
static bool
IComparisonOperators
<ulong, ulong, bool>.operator >(ulong left, ulong right) => left > right;
503
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
504
static 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)" />
521
static bool
IComparisonOperators
<nuint, nuint, bool>.operator <(nuint left, nuint right) => left < right;
523
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_LessThanOrEqual(TSelf, TOther)" />
524
static bool
IComparisonOperators
<nuint, nuint, bool>.operator <=(nuint left, nuint right) => left <= right;
526
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThan(TSelf, TOther)" />
527
static bool
IComparisonOperators
<nuint, nuint, bool>.operator >(nuint left, nuint right) => left > right;
529
/// <inheritdoc cref="
IComparisonOperators
{TSelf, TOther, TResult}.op_GreaterThanOrEqual(TSelf, TOther)" />
530
static 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
<,,>))]