public static int ToIntegerFromCanonical(this CanonicalIntegerBoolean canonical)
 {
     return(canonical.AsIntegerUnsafe());
 }
 public static int ToIntegerFromCanonicalChecked(this CanonicalIntegerBoolean canonical)
 {
     _ = checked (unchecked ((uint)(int)(-2)) + unchecked ((uint)canonical.AsIntegerUnsafe()));
     return(canonical.AsIntegerUnsafe());
 }