ethnum/uint/
iter.rs

1//! Module contains iterator specific trait implementations.
2
3use super::U256;
4
5impl_iter! {
6    impl Iter for U256;
7}