|
LINT (void);
|
Constructor 1:
an uninitialized LINT object is generated
|
|
|
Constructor 2:
LINT is constructed from a string of digits to base base
|
|
|
Constructor 3:
LINT is constructed from a byte vector with digits to base 28 according to IEEE P1363, significance of bits grows from left to right
|
|
LINT (const char* const str);
|
Constructor 4:
LINT is constructed from an ASCII string with C-Syntax
|
|
LINT (const LINT&);
|
Constructor 5:
LINT is constructed from LINT (copy constructor)
|
|
LINT (const signed int);
|
Constructor 6:
LINT is constructed from an integer of type int
|
|
LINT (const signed long);
|
Constructor 7:
LINT is constructed from an integer of type long
|
|
LINT (const unsigned char);
|
Constructor 8:
LINT is constructed from an integer of type unsigned char
|
|
LINT (const USHORT);
|
Constructor 9:
LINT is constructed from an integer of type unsigned short
|
|
LINT (const unsigned int);
|
Constructor 10:
LINT is constructed from an integer of type unsigned int
|
|
LINT (const unsigned long);
|
Constructor 11:
LINT is constructed from an integer of type unsigned long
|
|
LINT (const CLINT);
|
Constructor 12:
LINT is constructed from an integer of type CLINT
|
|
|
assignment a ← b
|
|
|
display of a LINT integer, with previous output of str
|
|
|
representation of a LINT integer as hexadecimal number
|
|
|
representation of a LINT integer as decimal number
|
|
|
representation of a LINT integer as octal number
|
|
|
representation of a LINT integer as binary number
|
|
|
representation of a LINT integer as character string to base base, with prefix 0x, or 0b if showbase > 0
|
|
|
transformation of a LINT integer into a byte vector, output of length in len, according to IEEE P1363, significance of bytes increasing from left to right
|
|
|
exchange of implicit argument a with argument b
|
|
|
clear implicit argument a by overwriting
|
|
|
read static LINT status variable to ostream s
|
|
|
read static LINT status variable to ostream cout
|
|
|
set status bits of value flags in LINT status variable referring to ostream s
|
|
|
set status bits in flags in LINT status variable referring to ostream cout
|
|
|
unset status bits in flags in LINT status variable referring to ostream s
|
|
|
unset status bits of flags in LINT status variable referring to ostream cout
|
|
|
reset the LINT status variable referring to ostream s to the value in flags
|
|
|
reset LINT status variable referring to ostream cout to the value in flags
|