You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now BigInteger and BigIntegerStatic only accept BigInteger type in the math method calls. Consider changing the signatures to Variant and converting to BigInteger in the method to allow support for other numeric types.
This currently results in a "Type Mismatch" error. It would be useful to allow such method calls.
Set Answer = BigInteger.Add(Int64.MaxValue, &h7FFFFFFF)
To achieve this now we need to use the CBigInt conversion method which can become unwieldy.
Set Answer = BigInteger.Add(CBigInt(Int64.MaxValue), CBigInt(&h7FFFFFFF))
The text was updated successfully, but these errors were encountered:
Right now
BigInteger
andBigIntegerStatic
only acceptBigInteger
type in the math method calls. Consider changing the signatures toVariant
and converting toBigInteger
in the method to allow support for other numeric types.This currently results in a "Type Mismatch" error. It would be useful to allow such method calls.
To achieve this now we need to use the
CBigInt
conversion method which can become unwieldy.The text was updated successfully, but these errors were encountered: