[][src]Trait agnes::join::Offset

pub trait Offset<O> {
    type Output;
}

A trait for applying a frame index offset O.

Associated Types

type Output

Result after applying offset O.

Loading content...

Implementors

impl<O, U> Offset<O> for U where
    U: Add<O>, 
[src]

type Output = <U as Add<O>>::Output

Loading content...