Basic properties of lists #
There is only one list of an empty type
Equations
- List.uniqueOfIsEmpty = { toInhabited := instInhabitedList, uniq := ⋯ }
mem #
length #
set-theoretic notation of lists #
Equations
- List.instSingletonList = { singleton := fun (x : α) => [x] }
Equations
- List.instInsertOfDecidableEq_mathlib = { insert := List.insert }
bounded quantifiers over lists #
list subset #
append #
replicate #
pure #
bind #
Alias of List.bind_eq_flatMap
.
concat #
reverse #
getLast #
If the last element of l
does not satisfy p
, then it is also the last element of
l.filter p
.
getLast? #
Alias of List.getLast?_eq_none_iff
.
head(!?) and tail #
Induction from the right #
Induction principle from the right for lists: if a property holds for the empty list, and
for l ++ [a]
if it holds for l
, then it holds for all lists. The principle is given for
a Sort
-valued predicate, i.e., it can also be used to construct data.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Bidirectional induction principle for lists: if a property holds for the empty list, the
singleton list, and a :: (l ++ [b])
from l
, then it holds for all lists. This can be used to
prove statements about palindromes. The principle is given for a Sort
-valued predicate, i.e., it
can also be used to construct data.
Equations
Instances For
sublists #
Alias of List.sublist_nil
.
Equations
indexOf #
Alias of List.idxOf_cons_eq
.
Alias of List.idxOf_cons_ne
.
Alias of List.idxOf_of_not_mem
.
Alias of List.idxOf_le_length
.
Alias of List.idxOf_lt_length_iff
.
Alias of List.idxOf_append_of_mem
.
Alias of List.idxOf_append_of_not_mem
.
nth element #
Alias of List.getElem_idxOf
.
Alias of List.idxOf_get
.
Alias of List.getElem?_idxOf
.
Alias of List.idxOf_get?
.
Alias of List.modifyTailIdx_modifyTailIdx_le
.
Alias of List.modifyTailIdx_modifyTailIdx_self
.
map #
Alias of List.flatMap_pure_eq_map
.
Alias of List.flatMap_congr
.
A single List.map
of a composition of functions is equal to
composing a List.map
with another List.map
, fully applied.
This is the reverse direction of List.map_map
.
take, drop #
Compared to drop_take_append_drop
, the order of summands is swapped.
foldl, foldr #
Consider two lists l₁
and l₂
with designated elements a₁
and a₂
somewhere in them:
l₁ = x₁ ++ [a₁] ++ z₁
and l₂ = x₂ ++ [a₂] ++ z₂
.
Assume the designated element a₂
is present in neither x₁
nor z₁
.
We conclude that the lists are equal (l₁ = l₂
) if and only if their respective parts are equal
(x₁ = x₂ ∧ a₁ = a₂ ∧ z₁ = z₂
).
foldlM, foldrM, mapM #
intersperse #
splitAt and splitOn #
Alias of List.splitAt_eq
.
The original list L
can be recovered by flattening the lists produced by splitOnP p L
,
interspersed with the elements L.filter p
.
intercalate [x]
is the left inverse of splitOn x
modifyLast #
map for partial functions #
lookmap #
filter #
filterMap #
Alias of List.filterMap_eq_flatMap_toList
.
filter #
erasep #
erase #
diff #
Forall #
Miscellaneous lemmas #
The images of disjoint lists under a partially defined map are disjoint
The images of disjoint lists under an injective map are disjoint
Alias of List.disjoint_map
.
The images of disjoint lists under an injective map are disjoint