Inv

Trait Inv 

Source
pub trait Inv {
    // Required method
    spec fn inv(self) -> bool;
}

Required Methods§

Source

spec fn inv(self) -> bool

Implementations on Foreign Types§

Source§

impl<T: Inv> Inv for Option<T>

Source§

open spec fn inv(self) -> bool

{
    match self {
        Some(t) => t.inv(),
        None => true,
    }
}

Implementors§