clojure.lang.Numbers.BigIntegerOps.equiv C# (CSharp) Method

equiv() public method

public equiv ( object x, object y ) : bool
x object
y object
return bool
            public bool equiv(object x, object y)
            {
                return toBigInteger(x).Equals(toBigInteger(y));
            }