LimbIterator currently using the default implement of ExactSizeIterator witch calls Iterator::size_hint().
but it always return the full size of the limbs.
document for ExactSizeIterator::len():
Returns the exact remaining length of the iterator.
The implementation ensures that the iterator will return exactly len() more times a [Some(T)](https://doc.rust-lang.org/std/option/enum.Option.html#variant.Some) value, before returning [None](https://doc.rust-lang.org/std/option/enum.Option.html#variant.None). This method has a default implementation, so you usually should not implement it directly. However, if you can provide a more efficient implementation, you can do so. See the [trait-level](https://doc.rust-lang.org/std/iter/trait.ExactSizeIterator.html) docs for an example.
This function has the same safety guarantees as the [Iterator::size_hint](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.size_hint) function.
LimbIterator currently using the default implement of ExactSizeIterator witch calls Iterator::size_hint(). but it always return the full size of the limbs.
document for ExactSizeIterator::len():