Function use_tla_forall
Source pub proof fn use_tla_forall<T, A>(
spec: TempPred<T>,
a_to_temp_pred: FnSpec<(A,), TempPred<T>>,
a: A,
)
Expand description
requiresspec.entails(tla_forall(a_to_temp_pred)),
ensuresspec.entails(a_to_temp_pred(a)),
If ⊧ forall a. P(a), then ⊧ P(a) for any particular a.
§Preconditions
§Postconditions