pub fn cons_concat<T>()
Expand description
Distributivity of cons
over union
.
logic
proof_assert! { forall<x: T, xs: Seq<T>, ys: Seq<T>> xs.push_front(x).concat(ys) == xs.concat(ys).push_front(x) }; proof_assert! { forall<x: T, ys: Seq<T>> ys.push_front(x).tail() == ys }; proof_assert! { forall<ys: Seq<T>> 0 < ys.len() ==> ys == ys.tail().push_front(ys[0]) };
ensures
forall<s: FSet<T>, t: FSet<Seq<T>>, u: FSet<Seq<T>>> FSet::concat(FSet::cons(s, t), u) == FSet::cons(s, FSet::concat(t, u))