Trait fructose::properties::factorization::Factorizable[][src]

pub trait Factorizable: Sized {
    type Factors: IntoIterator<Item = Self>;
    fn factors(&self) -> Self::Factors;
}

Associated Types

type Factors: IntoIterator<Item = Self>[src]

Loading content...

Required methods

fn factors(&self) -> Self::Factors[src]

Loading content...

Implementations on Foreign Types

impl Factorizable for u8[src]

type Factors = Vec<Self>

impl Factorizable for u16[src]

type Factors = Vec<Self>

impl Factorizable for u32[src]

type Factors = Vec<Self>

impl Factorizable for u64[src]

type Factors = Vec<Self>

impl Factorizable for u128[src]

type Factors = Vec<Self>

impl Factorizable for usize[src]

type Factors = Vec<Self>

impl Factorizable for i8[src]

type Factors = Vec<Self>

impl Factorizable for i16[src]

type Factors = Vec<Self>

impl Factorizable for i32[src]

type Factors = Vec<Self>

impl Factorizable for i64[src]

type Factors = Vec<Self>

impl Factorizable for i128[src]

type Factors = Vec<Self>

impl Factorizable for isize[src]

type Factors = Vec<Self>

impl Factorizable for f32[src]

type Factors = Vec<Self>

impl Factorizable for f64[src]

type Factors = Vec<Self>

Loading content...

Implementors

Loading content...