Trait beagle::consts::IsSmallerThan [] [src]

pub trait IsSmallerThan<C: IsLargerThan<Self> + NotSame<Self>>: NotSame<C> {
    fn index_array<T>(a0: &C::Type) -> &T
    where
        C: Array<T>
; }

A trait to indicate that a constant has a lower value than C

Required Methods

Index an array of size C safely.

Implementors