Trait IntoDigits

Source
pub trait IntoDigits<T> {
    // Required method
    fn digits(self) -> DigitIterator<T>;
}
Expand description

Extends a type T with the ability to become a DigitIterator.

Required Methods§

Implementations on Foreign Types§

Source§

impl IntoDigits<i8> for i8

Source§

impl IntoDigits<i16> for i16

Source§

impl IntoDigits<i32> for i32

Source§

impl IntoDigits<i64> for i64

Source§

impl IntoDigits<i128> for i128

Source§

impl IntoDigits<u8> for u8

Source§

impl IntoDigits<u16> for u16

Source§

impl IntoDigits<u32> for u32

Source§

impl IntoDigits<u64> for u64

Source§

impl IntoDigits<u128> for u128

Implementors§