Successive operations on different data can be threaded to speed things up.
For example, in operator*(BigInt, BigInt), the operations for stripping leading zeroes from, and adding trailing zeroes to different BigInt objects can be multi-threaded and can be run concurrently.
Successive operations on different data can be threaded to speed things up.
For example, in
operator*(BigInt, BigInt), the operations for stripping leading zeroes from, and adding trailing zeroes to differentBigIntobjects can be multi-threaded and can be run concurrently.