Lemmas about List.findSome?
, List.find?
, List.findIdx
, List.findIdx?
, List.idxOf
,
and List.lookup
.
findSome? #
@[simp]
theorem
List.findSome?_cons_of_isSome
{α✝ : Type u_1}
{α✝¹ : Type u_2}
{f : α✝ → Option α✝¹}
{a : α✝}
(l : List α✝)
(h : (f a).isSome = true)
:
@[reducible, inline, deprecated List.findSome?_eq_none_iff (since := "2024-09-05")]
abbrev
List.findSome?_eq_none
{α✝ : Type u_1}
{α✝¹ : Type u_2}
{p : α✝ → Option α✝¹}
{l : List α✝}
:
Instances For
@[simp]
theorem
List.findSome?_replicate_of_isNone
{α✝ : Type u_1}
{α✝¹ : Type u_2}
{f : α✝ → Option α✝¹}
{n : Nat}
{a : α✝}
(h : (f a).isNone = true)
:
find? #
@[reducible, inline, deprecated List.find?_eq_some_iff_append (since := "2024-11-06")]
Instances For
theorem
List.get_find?_mem
{α : Type u_1}
(xs : List α)
(p : α → Bool)
(h : (find? p xs).isSome = true)
:
@[simp]
@[simp]
@[reducible, inline, deprecated List.find?_flatten_eq_none_iff (since := "2025-02-03")]
Instances For
If find? p
returns some a
from xs.flatten
, then p a
holds, and
some list in xs
contains a
, and no earlier element of that list satisfies p
.
Moreover, no earlier list in xs
has an element satisfying p
.
@[reducible, inline, deprecated List.find?_flatten_eq_some_iff (since := "2025-02-03")]
Instances For
@[reducible, inline, deprecated List.find?_replicate_eq_none_iff (since := "2025-02-03")]
Instances For
@[reducible, inline, deprecated List.find?_replicate_eq_some_iff (since := "2025-02-03")]
Instances For
theorem
List.Sublist.find?_eq_none
{α : Type u_1}
{p : α → Bool}
{l₁ l₂ : List α}
(h : l₁.Sublist l₂)
:
findIdx? (preliminary lemmas) #
findFinIdx? #
@[simp]
findIdx #
@[deprecated List.findIdx_getElem (since := "2024-08-12")]
theorem
List.findIdx_get
{α : Type u_1}
{p : α → Bool}
{xs : List α}
{w : findIdx p xs < xs.length}
:
theorem
List.IsPrefix.findIdx_eq_of_findIdx_lt_length
{α : Type u_1}
{l₁ l₂ : List α}
{p : α → Bool}
(h : l₁ <+: l₂)
(lt : findIdx p l₁ < l₁.length)
:
findIdx? #
@[reducible, inline, deprecated List.of_findIdx?_eq_some (since := "2025-02-02")]
abbrev
List.findIdx?_of_eq_some
{α : Type u_1}
{i : Nat}
{xs : List α}
{p : α → Bool}
(w : findIdx? p xs = some i)
:
Instances For
@[reducible, inline, deprecated List.of_findIdx?_eq_none (since := "2025-02-02")]
abbrev
List.findIdx?_of_eq_none
{α : Type u_1}
{xs : List α}
{p : α → Bool}
(w : findIdx? p xs = none)
(i : Nat)
:
Instances For
theorem
List.Sublist.findIdx?_eq_none
{α : Type u_1}
{p : α → Bool}
{l₁ l₂ : List α}
(h : l₁.Sublist l₂)
:
idxOf #
The verification API for idxOf
is still incomplete.
The lemmas below should be made consistent with those for findIdx
(and proved using them).
@[reducible, inline, deprecated List.idxOf_cons (since := "2025-01-29")]
Equations
Instances For
@[reducible, inline, deprecated List.idxOf_cons_self (since := "2025-01-29")]
Instances For
@[reducible, inline, deprecated List.idxOf_append (since := "2025-01-29")]
Equations
Instances For
idxOf? #
The verification API for idxOf?
is still incomplete.
The lemmas below should be made consistent with those for findIdx?
(and proved using them).
@[reducible, inline, deprecated List.idxOf?_eq_none_iff (since := "2025-01-29")]
Instances For
finIdxOf? #
lookup #
Deprecations #
@[reducible, inline, deprecated List.find?_flatten (since := "2024-10-14")]
Equations
Instances For
@[reducible, inline, deprecated List.find?_flatten_eq_none (since := "2024-10-14")]
Instances For
@[reducible, inline, deprecated List.find?_flatten_eq_some (since := "2024-10-14")]
Instances For
@[reducible, inline, deprecated List.findIdx?_flatten (since := "2024-10-14")]