Function vstd::relations::total_ordering

source ·
pub open spec fn total_ordering<T>(r: FnSpec<(T, T), bool>) -> bool
Expand description
{
    &&& reflexive(r)
    &&& antisymmetric(r)
    &&& transitive(r)
    &&& strongly_connected(r)

}