Lemmas about Array.findSome?
, Array.find?,
Array.findIdx,
Array.findIdx?,
Array.idxOf`. #
findSome? #
@[simp]
theorem
Array.findSomeRev?_push_of_isSome
{α : Type u_1}
{α✝ : Type u_2}
{f : α → Option α✝}
{a : α}
(l : Array α)
(h : (f a).isSome = true)
:
@[simp]
theorem
Array.findSomeRev?_push_of_isNone
{α : Type u_1}
{α✝ : Type u_2}
{f : α → Option α✝}
{a : α}
(l : Array α)
(h : (f a).isNone = true)
:
@[simp]
@[simp]
theorem
Array.findSome?_mkArray_of_isNone
{α✝ : Type u_1}
{α✝¹ : Type u_2}
{f : α✝ → Option α✝¹}
{n : Nat}
{a : α✝}
(h : (f a).isNone = true)
:
find? #
theorem
Array.get_find?_mem
{α : Type u_1}
{p : α → Bool}
{xs : Array α}
(h : (find? p xs).isSome = true)
:
@[simp]
@[simp]
@[reducible, inline, deprecated Array.find?_flatten_eq_none_iff (since := "2025-02-03")]
Instances For
theorem
Array.find?_flatten_eq_some_iff
{α : Type u_1}
{xs : Array (Array α)}
{p : α → Bool}
{a : α}
:
If find? p
returns some a
from xs.flatten
, then p a
holds, and
some array in xs
contains a
, and no earlier element of that array satisfies p
.
Moreover, no earlier array in xs
has an element satisfying p
.
@[reducible, inline, deprecated Array.find?_flatten_eq_some_iff (since := "2025-02-03")]
Instances For
@[reducible, inline, deprecated Array.find?_mkArray_eq_none_iff (since := "2025-02-03")]
Instances For
@[reducible, inline, deprecated Array.find?_mkArray_eq_some_iff (since := "2025-02-03")]
Instances For
findFinIdx? #
@[simp]
findIdx #
findIdx? #
idxOf #
The verification API for idxOf
is still incomplete.
The lemmas below should be made consistent with those for findIdx
(and proved using them).
idxOf? #
The verification API for idxOf?
is still incomplete.
The lemmas below should be made consistent with those for findIdx?
(and proved using them).