Binom

Trait Binom 

Source
pub trait Binom: Sized {
    // Required method
    fn binom(self, k: Self) -> impl Iterator<Item = Self>;
}

Required Methods§

Source

fn binom(self, k: Self) -> impl Iterator<Item = Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Binom for u8

Source§

fn binom(self, k: u8) -> impl Iterator<Item = u8>

Source§

impl Binom for u16

Source§

fn binom(self, k: u16) -> impl Iterator<Item = u16>

Source§

impl Binom for u32

Source§

fn binom(self, k: u32) -> impl Iterator<Item = u32>

Source§

impl Binom for u64

Source§

fn binom(self, k: u64) -> impl Iterator<Item = u64>

Source§

impl Binom for u128

Source§

fn binom(self, k: u128) -> impl Iterator<Item = u128>

Source§

impl Binom for usize

Source§

fn binom(self, k: usize) -> impl Iterator<Item = usize>

Implementors§