pub broadcast proof fn lemma_seq_all_drop_last<T>(s: Seq<T>, f: FnSpec<(T,), bool>)Expand description
requires
s.len() > 0,ensuress.all(f) <==> #[trigger] s.drop_last().all(f) && f(s.last()),s.all(f) is equivalent to s.drop_last().all(f) and f(s.last()).