Cryptography Reference
In-Depth Information
const int
operator >= (const LINT& a,
const LINT& b);
comparison a > = b
fstream&
operator >> (fstream& s,
LINT& ln);
overloaded extract operator for
reading LINT integers from files,
input/output
stream
of
type
fstream
ifstream&
operator >> (ifstream& s,
LINT& ln);
overloaded extract operator for
reading LINT integers from files,
input stream of type ifstream
void
purge (LINT& a);
clear by overwriting
LINT_omanip<int>
ResetLintFlags (int flag);
manipulator to unset status bits
of value flag in the LINT status
variable
LINT_omanip<int>
SetLintFlags (int flag);
manipulator for setting status
bits of the value flag in the LINT
status variable
B.3 Basic Operations: Member Functions
const LINT&
add (const LINT& b);
addition c = a.add (b);
const LINT&
divr (const LINT& d, LINT& r);
division with remainder quotient
= dividend.div (divisor,
remainder);
const LINT&
mul (const LINT& b);
multiplication c = a.mul (b);
const LINT
operator -- (int);
decrement operator (postfix) a--;
const LINT& operator --
(void);
decrement operator (prefix) --a;
 
Search WWH ::




Custom Search