1
0
mirror of https://github.com/danog/tgseclib.git synced 2025-01-21 21:41:14 +01:00

Add #@+ block for properties used by internal implementation.

This commit is contained in:
Andreas Fischer 2014-12-08 15:54:44 +01:00
parent 8ecf956499
commit 2f27620409

View File

@ -159,6 +159,11 @@ class BigInteger
*/
const KARATSUBA_CUTOFF = 25;
/**#@+
* Static properties used by the pure-PHP implementation.
*
* @see __construct()
*/
protected static $base;
protected static $baseFull;
protected static $maxDigit;
@ -176,6 +181,7 @@ class BigInteger
*/
protected static $max10Len;
protected static $maxDigit2;
/**#@-*/
/**
* Holds the BigInteger's value.