clojure.lang.Numbers.LongBitOps.flipBit C# (CSharp) Метод

flipBit() публичный Метод

public flipBit ( object x, int n ) : object
x object
n int
Результат object
            public object flipBit(object x, int n)
            {
                if (n < 63)
                    return Convert.ToInt64(x) ^ (1L << n);
                else
                    return toBigInteger(x).flipBit(n);
            }