intInf: A signed integer type with arbitrary-precision
|
|
class intInf
A signed integer type with arbitrary-precision including the usual arithmetic.
Arbitrary precision means that the type is never out of bounds.
This feature comes with a huge performance penalty.
intInf()
Class default constructor.
intInf(const char* c)
Constructor from an integer included in string c..
intInf(const String& s)
Constructor from an integer included in string s.
const intInf& operator=(const char* c)
Logical operator equal to string c.
|