Trait staticstep::IntoIncBy[][src]

pub trait IntoIncBy<T: Copy + Default + Step>: RangeBounds<T> {
    fn inc_by<const STEP: usize>(self) -> IncBy<T, STEP>

Notable traits for IncBy<T, STEP>

impl<T: Copy + Default + Step, const STEP: usize> Iterator for IncBy<T, STEP> type Item = T;
; }

Required methods

fn inc_by<const STEP: usize>(self) -> IncBy<T, STEP>

Notable traits for IncBy<T, STEP>

impl<T: Copy + Default + Step, const STEP: usize> Iterator for IncBy<T, STEP> type Item = T;
[src]

Loading content...

Implementors

impl<T: Copy + Default + Step, R: RangeBounds<T>> IntoIncBy<T> for R[src]

Loading content...