ln3 Method - GetDigit

Description
Get a single multi-precision digit from the large number.
Signature
digit_t GetDigit( size_t index ) const
Parameters
Name Type Description
index size_t The index of the multi-precision digit to be returned.
Returns
( digit_t )  The multi-precision digit.
Example
Loop through the multi-precision digits that represent the large number, printing each one:
ln X;
...
size_t digits = X.GetSize( );
for( size_t i=0 ; i<digits ; i++ )
    cout << "digit " << i << " = " << X.GetDigit( i ) << endl;