pub trait IntoDigits<T> {
// Required method
fn digits(self) -> DigitIterator<T>;
}
Expand description
Extends a type T
with the ability to become a DigitIterator
.
pub trait IntoDigits<T> {
// Required method
fn digits(self) -> DigitIterator<T>;
}
Extends a type T
with the ability to become a DigitIterator
.