The predicate List.Sorted (now deprecated). #
@[deprecated List.Pairwise (since := "2025-10-11")]
Sorted r l is the same as List.Pairwise r l and has been deprecated.
Consider using any of SortedLE, SortedLT, SortedGE, or SortedGT if the relation you're
using is a preorder.
Equations
Instances For
@[deprecated List.instDecidablePairwise (since := "2025-10-11")]
Deprecated decidable instance for Sorted.
Equations
Instances For
@[deprecated List.Pairwise.filter (since := "2025-10-11")]
theorem
List.Sorted.filter
{α : Type u}
{r : α → α → Prop}
{l : List α}
(p : α → Bool)
:
Sorted r l → Sorted r (List.filter p l)
@[deprecated List.Pairwise.filterMap (since := "2025-10-11")]