MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / TriSign

Method TriSign

CSharp/Clipper2Lib/Clipper.Core.cs:568–572  ·  view source on GitHub ↗
(long x)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected