(long x)
| 566 | } |
| 567 | |
| 568 | [MethodImpl(MethodImplOptions.AggressiveInlining)] |
| 569 | internal static int TriSign(long x) // returns 0, 1 or -1 |
| 570 | { |
| 571 | return (x < 0) ? -1 : (x > 0) ? 1 : 0; |
| 572 | } |
| 573 | |
| 574 | public struct UInt128Struct |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected