Documentation

Init.Data.List.Find

Lemmas about List.findSome?, List.find?, List.findIdx, List.findIdx?, List.indexOf, 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) :
List.findSome? f (a :: l) = f a
@[simp]
theorem List.findSome?_cons_of_isNone {α✝ : Type u_1} {α✝¹ : Type u_2} {f : α✝ → Option α✝¹} {a : α✝} (l : List α✝) (h : (f a).isNone = true) :
theorem List.exists_of_findSome?_eq_some {α : Type u_1} {β : Type u_2} {b : β} {l : List α} {f : α → Option β} (w : List.findSome? f l = some b) :
∃ (a : α), a ∈ l ∧ f a = some b
@[simp]
theorem List.findSome?_eq_none_iff {α✝ : Type u_1} {α✝¹ : Type u_2} {p : α✝ → Option α✝¹} {l : List α✝} :
List.findSome? p l = none ↔ ∀ (x : α✝), x ∈ l → p x = none
@[reducible, inline, deprecated List.findSome?_eq_none_iff]
abbrev List.findSome?_eq_none {α✝ : Type u_1} {α✝¹ : Type u_2} {p : α✝ → Option α✝¹} {l : List α✝} :
List.findSome? p l = none ↔ ∀ (x : α✝), x ∈ l → p x = none
Equations
Instances For
    @[simp]
    theorem List.findSome?_isSome_iff {α : Type u_1} {β : Type u_2} {f : α → Option β} {l : List α} :
    (List.findSome? f l).isSome = true ↔ ∃ (x : α), x ∈ l ∧ (f x).isSome = true
    theorem List.findSome?_eq_some_iff {α : Type u_1} {β : Type u_2} {f : α → Option β} {l : List α} {b : β} :
    List.findSome? f l = some b ↔ ∃ (l₁ : List α), ∃ (a : α), ∃ (l₂ : List α), l = l₁ ++ a :: l₂ ∧ f a = some b ∧ ∀ (x : α), x ∈ l₁ → f x = none
    @[simp]
    theorem List.findSome?_guard {α : Type u_1} {p : α → Bool} (l : List α) :
    List.findSome? (Option.guard fun (x : α) => p x = true) l = List.find? p l
    @[simp]
    theorem List.head?_filterMap {α : Type u_1} {β : Type u_2} (f : α → Option β) (l : List α) :
    @[simp]
    theorem List.head_filterMap {α : Type u_1} {β : Type u_2} (f : α → Option β) (l : List α) (h : List.filterMap f l ≠ []) :
    (List.filterMap f l).head h = (List.findSome? f l).get ⋯
    @[simp]
    theorem List.getLast?_filterMap {α : Type u_1} {β : Type u_2} (f : α → Option β) (l : List α) :
    (List.filterMap f l).getLast? = List.findSome? f l.reverse
    @[simp]
    theorem List.getLast_filterMap {α : Type u_1} {β : Type u_2} (f : α → Option β) (l : List α) (h : List.filterMap f l ≠ []) :
    (List.filterMap f l).getLast h = (List.findSome? f l.reverse).get ⋯
    @[simp]
    theorem List.map_findSome? {α : Type u_1} {β : Type u_2} {γ : Type u_3} (f : α → Option β) (g : β → γ) (l : List α) :
    theorem List.findSome?_map {β : Type u_1} {γ : Type u_2} {α✝ : Type u_3} {p : γ → Option α✝} (f : β → γ) (l : List β) :
    theorem List.findSome?_append {α : Type u_1} {α✝ : Type u_2} {f : α → Option α✝} {l₁ l₂ : List α} :
    List.findSome? f (l₁ ++ l₂) = (List.findSome? f l₁).or (List.findSome? f l₂)
    theorem List.head_flatten {α : Type u_1} {L : List (List α)} (h : ∃ (l : List α), l ∈ L ∧ l ≠ []) :
    L.flatten.head ⋯ = (List.findSome? (fun (l : List α) => l.head?) L).get ⋯
    theorem List.getLast_flatten {α : Type u_1} {L : List (List α)} (h : ∃ (l : List α), l ∈ L ∧ l ≠ []) :
    L.flatten.getLast ⋯ = (List.findSome? (fun (l : List α) => l.getLast?) L.reverse).get ⋯
    theorem List.findSome?_replicate {α✝ : Type u_1} {α✝¹ : Type u_2} {f : α✝ → Option α✝¹} {n : Nat} {a : α✝} :
    List.findSome? f (List.replicate n a) = if n = 0 then none else f a
    @[simp]
    theorem List.findSome?_replicate_of_pos {n : Nat} {α✝ : Type u_1} {α✝¹ : Type u_2} {f : α✝ → Option α✝¹} {a : α✝} (h : 0 < n) :
    @[simp]
    theorem List.findSome?_replicate_of_isSome {α✝ : Type u_1} {α✝¹ : Type u_2} {f : α✝ → Option α✝¹} {n : Nat} {a : α✝} :
    (f a).isSome = true → List.findSome? f (List.replicate n a) = if n = 0 then none else f a
    @[simp]
    theorem List.findSome?_replicate_of_isNone {α✝ : Type u_1} {α✝¹ : Type u_2} {f : α✝ → Option α✝¹} {n : Nat} {a : α✝} (h : (f a).isNone = true) :
    theorem List.Sublist.findSome?_isSome {α : Type u_1} {α✝ : Type u_2} {f : α → Option α✝} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
    (List.findSome? f l₁).isSome = true → (List.findSome? f l₂).isSome = true
    theorem List.Sublist.findSome?_eq_none {α : Type u_1} {α✝ : Type u_2} {f : α → Option α✝} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
    List.findSome? f l₂ = none → List.findSome? f l₁ = none
    theorem List.IsPrefix.findSome?_eq_some {α : Type u_1} {β : Type u_2} {b : β} {l₁ l₂ : List α} {f : α → Option β} (h : l₁ <+: l₂) :
    List.findSome? f l₁ = some b → List.findSome? f l₂ = some b
    theorem List.IsPrefix.findSome?_eq_none {α : Type u_1} {β : Type u_2} {l₁ l₂ : List α} {f : α → Option β} (h : l₁ <+: l₂) :
    List.findSome? f l₂ = none → List.findSome? f l₁ = none
    theorem List.IsSuffix.findSome?_eq_none {α : Type u_1} {β : Type u_2} {l₁ l₂ : List α} {f : α → Option β} (h : l₁ <:+ l₂) :
    List.findSome? f l₂ = none → List.findSome? f l₁ = none
    theorem List.IsInfix.findSome?_eq_none {α : Type u_1} {β : Type u_2} {l₁ l₂ : List α} {f : α → Option β} (h : l₁ <:+: l₂) :
    List.findSome? f l₂ = none → List.findSome? f l₁ = none

    find? #

    @[simp]
    theorem List.find?_singleton {α : Type u_1} (a : α) (p : α → Bool) :
    List.find? p [a] = if p a = true then some a else none
    @[simp]
    theorem List.find?_cons_of_pos {α✝ : Type u_1} {p : α✝ → Bool} {a : α✝} (l : List α✝) (h : p a = true) :
    List.find? p (a :: l) = some a
    @[simp]
    theorem List.find?_cons_of_neg {α✝ : Type u_1} {p : α✝ → Bool} {a : α✝} (l : List α✝) (h : ¬p a = true) :
    @[simp]
    theorem List.find?_eq_none {α✝ : Type u_1} {p : α✝ → Bool} {l : List α✝} :
    List.find? p l = none ↔ ∀ (x : α✝), x ∈ l → ¬p x = true
    theorem List.find?_eq_some_iff_append {α✝ : Type u_1} {b : α✝} {p : α✝ → Bool} {xs : List α✝} :
    List.find? p xs = some b ↔ p b = true ∧ ∃ (as : List α✝), ∃ (bs : List α✝), xs = as ++ b :: bs ∧ ∀ (a : α✝), a ∈ as → (!p a) = true
    @[reducible, inline, deprecated List.find?_eq_some_iff_append]
    abbrev List.find?_eq_some {α✝ : Type u_1} {b : α✝} {p : α✝ → Bool} {xs : List α✝} :
    List.find? p xs = some b ↔ p b = true ∧ ∃ (as : List α✝), ∃ (bs : List α✝), xs = as ++ b :: bs ∧ ∀ (a : α✝), a ∈ as → (!p a) = true
    Equations
    Instances For
      @[simp]
      theorem List.find?_cons_eq_some {α✝ : Type u_1} {a : α✝} {xs : List α✝} {p : α✝ → Bool} {b : α✝} :
      List.find? p (a :: xs) = some b ↔ p a = true ∧ a = b ∨ (!p a) = true ∧ List.find? p xs = some b
      @[simp]
      theorem List.find?_isSome {α : Type u_1} {xs : List α} {p : α → Bool} :
      (List.find? p xs).isSome = true ↔ ∃ (x : α), x ∈ xs ∧ p x = true
      theorem List.find?_some {α✝ : Type u_1} {p : α✝ → Bool} {a : α✝} {l : List α✝} :
      List.find? p l = some a → p a = true
      theorem List.mem_of_find?_eq_some {α✝ : Type u_1} {p : α✝ → Bool} {a : α✝} {l : List α✝} :
      List.find? p l = some a → a ∈ l
      theorem List.get_find?_mem {α : Type u_1} (xs : List α) (p : α → Bool) (h : (List.find? p xs).isSome = true) :
      (List.find? p xs).get h ∈ xs
      @[simp]
      theorem List.find?_filter {α : Type u_1} (xs : List α) (p q : α → Bool) :
      List.find? q (List.filter p xs) = List.find? (fun (a : α) => decide (p a = true ∧ q a = true)) xs
      @[simp]
      theorem List.head?_filter {α : Type u_1} (p : α → Bool) (l : List α) :
      (List.filter p l).head? = List.find? p l
      @[simp]
      theorem List.head_filter {α : Type u_1} (p : α → Bool) (l : List α) (h : List.filter p l ≠ []) :
      (List.filter p l).head h = (List.find? p l).get ⋯
      @[simp]
      theorem List.getLast?_filter {α : Type u_1} (p : α → Bool) (l : List α) :
      (List.filter p l).getLast? = List.find? p l.reverse
      @[simp]
      theorem List.getLast_filter {α : Type u_1} (p : α → Bool) (l : List α) (h : List.filter p l ≠ []) :
      (List.filter p l).getLast h = (List.find? p l.reverse).get ⋯
      @[simp]
      theorem List.find?_filterMap {α : Type u_1} {β : Type u_2} (xs : List α) (f : α → Option β) (p : β → Bool) :
      List.find? p (List.filterMap f xs) = (List.find? (fun (a : α) => Option.any p (f a)) xs).bind f
      @[simp]
      theorem List.find?_map {β : Type u_1} {α : Type u_2} {p : α → Bool} (f : β → α) (l : List β) :
      @[simp]
      theorem List.find?_append {α : Type u_1} {p : α → Bool} {l₁ l₂ : List α} :
      List.find? p (l₁ ++ l₂) = (List.find? p l₁).or (List.find? p l₂)
      @[simp]
      theorem List.find?_flatten {α : Type u_1} (xs : List (List α)) (p : α → Bool) :
      List.find? p xs.flatten = List.findSome? (fun (x : List α) => List.find? p x) xs
      theorem List.find?_flatten_eq_none {α : Type u_1} {xs : List (List α)} {p : α → Bool} :
      List.find? p xs.flatten = none ↔ ∀ (ys : List α), ys ∈ xs → ∀ (x : α), x ∈ ys → (!p x) = true
      theorem List.find?_flatten_eq_some {α : Type u_1} {xs : List (List α)} {p : α → Bool} {a : α} :
      List.find? p xs.flatten = some a ↔ p a = true ∧ ∃ (as : List (List α)), ∃ (ys : List α), ∃ (zs : List α), ∃ (bs : List (List α)), xs = as ++ (ys ++ a :: zs) :: bs ∧ (∀ (a : List α), a ∈ as → ∀ (x : α), x ∈ a → (!p x) = true) ∧ ∀ (x : α), x ∈ ys → (!p x) = true

      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.

      @[simp]
      theorem List.find?_flatMap {α : Type u_1} {β : Type u_2} (xs : List α) (f : α → List β) (p : β → Bool) :
      List.find? p (xs.flatMap f) = List.findSome? (fun (x : α) => List.find? p (f x)) xs
      @[reducible, inline, deprecated List.find?_flatMap]
      abbrev List.find?_bind {α : Type u_1} {β : Type u_2} (xs : List α) (f : α → List β) (p : β → Bool) :
      List.find? p (xs.flatMap f) = List.findSome? (fun (x : α) => List.find? p (f x)) xs
      Equations
      Instances For
        theorem List.find?_flatMap_eq_none {α : Type u_1} {β : Type u_2} {xs : List α} {f : α → List β} {p : β → Bool} :
        List.find? p (xs.flatMap f) = none ↔ ∀ (x : α), x ∈ xs → ∀ (y : β), y ∈ f x → (!p y) = true
        @[reducible, inline, deprecated List.find?_flatMap_eq_none]
        abbrev List.find?_bind_eq_none {α : Type u_1} {β : Type u_2} {xs : List α} {f : α → List β} {p : β → Bool} :
        List.find? p (xs.flatMap f) = none ↔ ∀ (x : α), x ∈ xs → ∀ (y : β), y ∈ f x → (!p y) = true
        Equations
        Instances For
          theorem List.find?_replicate {α✝ : Type u_1} {p : α✝ → Bool} {n : Nat} {a : α✝} :
          List.find? p (List.replicate n a) = if n = 0 then none else if p a = true then some a else none
          @[simp]
          theorem List.find?_replicate_of_length_pos {n : Nat} {α✝ : Type u_1} {p : α✝ → Bool} {a : α✝} (h : 0 < n) :
          List.find? p (List.replicate n a) = if p a = true then some a else none
          @[simp]
          theorem List.find?_replicate_of_pos {α✝ : Type u_1} {p : α✝ → Bool} {n : Nat} {a : α✝} (h : p a = true) :
          List.find? p (List.replicate n a) = if n = 0 then none else some a
          @[simp]
          theorem List.find?_replicate_of_neg {α✝ : Type u_1} {p : α✝ → Bool} {n : Nat} {a : α✝} (h : ¬p a = true) :
          theorem List.find?_replicate_eq_none {α : Type u_1} {n : Nat} {a : α} {p : α → Bool} :
          List.find? p (List.replicate n a) = none ↔ n = 0 ∨ (!p a) = true
          @[simp]
          theorem List.find?_replicate_eq_some {α : Type u_1} {n : Nat} {a b : α} {p : α → Bool} :
          List.find? p (List.replicate n a) = some b ↔ n ≠ 0 ∧ p a = true ∧ a = b
          @[simp]
          theorem List.get_find?_replicate {α : Type u_1} (n : Nat) (a : α) (p : α → Bool) (h : (List.find? p (List.replicate n a)).isSome = true) :
          (List.find? p (List.replicate n a)).get h = a
          theorem List.Sublist.find?_isSome {α : Type u_1} {p : α → Bool} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
          (List.find? p l₁).isSome = true → (List.find? p l₂).isSome = true
          theorem List.Sublist.find?_eq_none {α : Type u_1} {p : α → Bool} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
          List.find? p l₂ = none → List.find? p l₁ = none
          theorem List.IsPrefix.find?_eq_some {α : Type u_1} {b : α} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) :
          List.find? p l₁ = some b → List.find? p l₂ = some b
          theorem List.IsPrefix.find?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) :
          List.find? p l₂ = none → List.find? p l₁ = none
          theorem List.IsSuffix.find?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <:+ l₂) :
          List.find? p l₂ = none → List.find? p l₁ = none
          theorem List.IsInfix.find?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <:+: l₂) :
          List.find? p l₂ = none → List.find? p l₁ = none
          theorem List.find?_pmap {α : Type u_1} {β : Type u_2} {P : α → Prop} (f : (a : α) → P a → β) (xs : List α) (H : ∀ (a : α), a ∈ xs → P a) (p : β → Bool) :
          List.find? p (List.pmap f xs H) = Option.map (fun (x : { x : α // x ∈ xs }) => match x with | ⟨a, m⟩ => f a ⋯) (List.find? (fun (x : { x : α // x ∈ xs }) => match x with | ⟨a, m⟩ => p (f a ⋯)) xs.attach)

          findIdx #

          theorem List.findIdx_cons {α : Type u_1} (p : α → Bool) (b : α) (l : List α) :
          List.findIdx p (b :: l) = bif p b then 0 else List.findIdx p l + 1
          theorem List.findIdx_cons.findIdx_go_succ {α : Type u_1} (p : α → Bool) (l : List α) (n : Nat) :
          List.findIdx.go p l (n + 1) = List.findIdx.go p l n + 1
          theorem List.findIdx_of_getElem?_eq_some {α : Type u_1} {p : α → Bool} {y : α} {xs : List α} (w : xs[List.findIdx p xs]? = some y) :
          p y = true
          theorem List.findIdx_getElem {α : Type u_1} {p : α → Bool} {xs : List α} {w : List.findIdx p xs < xs.length} :
          p xs[List.findIdx p xs] = true
          @[deprecated List.findIdx_of_getElem?_eq_some]
          theorem List.findIdx_of_get?_eq_some {α : Type u_1} {p : α → Bool} {y : α} {xs : List α} (w : xs.get? (List.findIdx p xs) = some y) :
          p y = true
          @[deprecated List.findIdx_getElem]
          theorem List.findIdx_get {α : Type u_1} {p : α → Bool} {xs : List α} {w : List.findIdx p xs < xs.length} :
          p (xs.get ⟨List.findIdx p xs, w⟩) = true
          theorem List.findIdx_lt_length_of_exists {α : Type u_1} {p : α → Bool} {xs : List α} (h : ∃ (x : α), x ∈ xs ∧ p x = true) :
          List.findIdx p xs < xs.length
          theorem List.findIdx_getElem?_eq_getElem_of_exists {α : Type u_1} {p : α → Bool} {xs : List α} (h : ∃ (x : α), x ∈ xs ∧ p x = true) :
          xs[List.findIdx p xs]? = some xs[List.findIdx p xs]
          @[deprecated List.findIdx_getElem?_eq_getElem_of_exists]
          theorem List.findIdx_get?_eq_get_of_exists {α : Type u_1} {p : α → Bool} {xs : List α} (h : ∃ (x : α), x ∈ xs ∧ p x = true) :
          xs.get? (List.findIdx p xs) = some (xs.get ⟨List.findIdx p xs, ⋯⟩)
          @[simp]
          theorem List.findIdx_eq_length {α : Type u_1} {p : α → Bool} {xs : List α} :
          List.findIdx p xs = xs.length ↔ ∀ (x : α), x ∈ xs → p x = false
          theorem List.findIdx_eq_length_of_false {α : Type u_1} {p : α → Bool} {xs : List α} (h : ∀ (x : α), x ∈ xs → p x = false) :
          List.findIdx p xs = xs.length
          theorem List.findIdx_le_length {α : Type u_1} (p : α → Bool) {xs : List α} :
          List.findIdx p xs ≤ xs.length
          @[simp]
          theorem List.findIdx_lt_length {α : Type u_1} {p : α → Bool} {xs : List α} :
          List.findIdx p xs < xs.length ↔ ∃ (x : α), x ∈ xs ∧ p x = true
          theorem List.not_of_lt_findIdx {α : Type u_1} {p : α → Bool} {xs : List α} {i : Nat} (h : i < List.findIdx p xs) :
          p xs[i] = false

          p does not hold for elements with indices less than xs.findIdx p.

          theorem List.le_findIdx_of_not {α : Type u_1} {p : α → Bool} {xs : List α} {i : Nat} (h : i < xs.length) (h2 : ∀ (j : Nat) (hji : j < i), p xs[j] = false) :

          If ¬ p xs[j] for all j < i, then i ≤ xs.findIdx p.

          theorem List.lt_findIdx_of_not {α : Type u_1} {p : α → Bool} {xs : List α} {i : Nat} (h : i < xs.length) (h2 : ∀ (j : Nat) (hji : j ≤ i), ¬p (xs.get ⟨j, ⋯⟩) = true) :

          If ¬ p xs[j] for all j ≤ i, then i < xs.findIdx p.

          theorem List.findIdx_eq {α : Type u_1} {p : α → Bool} {xs : List α} {i : Nat} (h : i < xs.length) :
          List.findIdx p xs = i ↔ p xs[i] = true ∧ ∀ (j : Nat) (hji : j < i), p xs[j] = false

          xs.findIdx p = i iff p xs[i] and ¬ p xs [j] for all j < i.

          theorem List.findIdx_append {α : Type u_1} (p : α → Bool) (l₁ l₂ : List α) :
          List.findIdx p (l₁ ++ l₂) = if List.findIdx p l₁ < l₁.length then List.findIdx p l₁ else List.findIdx p l₂ + l₁.length
          theorem List.IsPrefix.findIdx_le {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) :
          theorem List.IsPrefix.findIdx_eq_of_findIdx_lt_length {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) (lt : List.findIdx p l₁ < l₁.length) :
          theorem List.findIdx_le_findIdx {α : Type u_1} {l : List α} {p q : α → Bool} (h : ∀ (x : α), x ∈ l → p x = true → q x = true) :

          findIdx? #

          @[simp]
          theorem List.findIdx?_nil {α : Type u_1} {p : α → Bool} {i : Nat} :
          List.findIdx? p [] i = none
          @[simp]
          theorem List.findIdx?_cons {α✝ : Type u_1} {x : α✝} {xs : List α✝} {p : α✝ → Bool} {i : Nat} :
          List.findIdx? p (x :: xs) i = if p x = true then some i else List.findIdx? p xs (i + 1)
          theorem List.findIdx?_succ {α : Type u_1} {xs : List α} {p : α → Bool} {i : Nat} :
          List.findIdx? p xs (i + 1) = Option.map (fun (i : Nat) => i + 1) (List.findIdx? p xs i)
          @[simp]
          theorem List.findIdx?_start_succ {α : Type u_1} {xs : List α} {p : α → Bool} {i : Nat} :
          List.findIdx? p xs (i + 1) = Option.map (fun (k : Nat) => k + (i + 1)) (List.findIdx? p xs)
          @[simp]
          theorem List.findIdx?_eq_none_iff {α : Type u_1} {xs : List α} {p : α → Bool} :
          List.findIdx? p xs = none ↔ ∀ (x : α), x ∈ xs → p x = false
          theorem List.findIdx?_isSome {α : Type u_1} {xs : List α} {p : α → Bool} :
          (List.findIdx? p xs).isSome = xs.any p
          theorem List.findIdx?_isNone {α : Type u_1} {xs : List α} {p : α → Bool} :
          (List.findIdx? p xs).isNone = xs.all fun (x : α) => decide ¬p x = true
          theorem List.findIdx?_eq_some_iff_findIdx_eq {α : Type u_1} {xs : List α} {p : α → Bool} {i : Nat} :
          List.findIdx? p xs = some i ↔ i < xs.length ∧ List.findIdx p xs = i
          theorem List.findIdx?_eq_some_of_exists {α : Type u_1} {xs : List α} {p : α → Bool} (h : ∃ (x : α), x ∈ xs ∧ p x = true) :
          theorem List.findIdx?_eq_none_iff_findIdx_eq {α : Type u_1} {xs : List α} {p : α → Bool} :
          List.findIdx? p xs = none ↔ List.findIdx p xs = xs.length
          theorem List.findIdx?_eq_guard_findIdx_lt {α : Type u_1} {xs : List α} {p : α → Bool} :
          List.findIdx? p xs = Option.guard (fun (i : Nat) => i < xs.length) (List.findIdx p xs)
          theorem List.findIdx?_eq_some_iff_getElem {α : Type u_1} {xs : List α} {p : α → Bool} {i : Nat} :
          List.findIdx? p xs = some i ↔ ∃ (h : i < xs.length), p xs[i] = true ∧ ∀ (j : Nat) (hji : j < i), ¬p xs[j] = true
          theorem List.findIdx?_of_eq_some {α : Type u_1} {i : Nat} {xs : List α} {p : α → Bool} (w : List.findIdx? p xs = some i) :
          match xs[i]? with | some a => p a = true | none => false = true
          theorem List.findIdx?_of_eq_none {α : Type u_1} {xs : List α} {p : α → Bool} (w : List.findIdx? p xs = none) (i : Nat) :
          match xs[i]? with | some a => ¬p a = true | none => true = true
          @[simp]
          theorem List.findIdx?_map {β : Type u_1} {α : Type u_2} {p : α → Bool} (f : β → α) (l : List β) :
          @[simp]
          theorem List.findIdx?_append {α : Type u_1} {xs ys : List α} {p : α → Bool} :
          List.findIdx? p (xs ++ ys) = (List.findIdx? p xs).or (Option.map (fun (i : Nat) => i + xs.length) (List.findIdx? p ys))
          theorem List.findIdx?_flatten {α : Type u_1} {l : List (List α)} {p : α → Bool} :
          List.findIdx? p l.flatten = Option.map (fun (i : Nat) => (List.map List.length (List.take i l)).sum + (Option.map (fun (xs : List α) => List.findIdx p xs) l[i]?).getD 0) (List.findIdx? (fun (x : List α) => x.any p) l)
          @[simp]
          theorem List.findIdx?_replicate {n : Nat} {α✝ : Type u_1} {a : α✝} {p : α✝ → Bool} :
          List.findIdx? p (List.replicate n a) = if 0 < n ∧ p a = true then some 0 else none
          theorem List.findIdx?_eq_findSome?_enum {α : Type u_1} {xs : List α} {p : α → Bool} :
          List.findIdx? p xs = List.findSome? (fun (x : Nat × α) => match x with | (i, a) => if p a = true then some i else none) xs.enum
          theorem List.findIdx?_eq_fst_find?_enum {α : Type u_1} {xs : List α} {p : α → Bool} :
          List.findIdx? p xs = Option.map (fun (x : Nat × α) => x.fst) (List.find? (fun (x : Nat × α) => match x with | (fst, x) => p x) xs.enum)
          theorem List.findIdx?_eq_none_of_findIdx?_eq_none {α : Type u_1} {xs : List α} {p q : α → Bool} (w : ∀ (x : α), x ∈ xs → p x = true → q x = true) :
          List.findIdx? q xs = none → List.findIdx? p xs = none
          theorem List.Sublist.findIdx?_isSome {α : Type u_1} {p : α → Bool} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
          (List.findIdx? p l₁).isSome = true → (List.findIdx? p l₂).isSome = true
          theorem List.Sublist.findIdx?_eq_none {α : Type u_1} {p : α → Bool} {l₁ l₂ : List α} (h : l₁.Sublist l₂) :
          List.findIdx? p l₂ = none → List.findIdx? p l₁ = none
          theorem List.IsPrefix.findIdx?_eq_some {α : Type u_1} {i : Nat} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) :
          List.findIdx? p l₁ = some i → List.findIdx? p l₂ = some i
          theorem List.IsPrefix.findIdx?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <+: l₂) :
          List.findIdx? p l₂ = none → List.findIdx? p l₁ = none
          theorem List.IsSuffix.findIdx?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <:+ l₂) :
          List.findIdx? p l₂ = none → List.findIdx? p l₁ = none
          theorem List.IsInfix.findIdx?_eq_none {α : Type u_1} {l₁ l₂ : List α} {p : α → Bool} (h : l₁ <:+: l₂) :
          List.findIdx? p l₂ = none → List.findIdx? p l₁ = none

          indexOf #

          theorem List.indexOf_cons {α : Type u_1} {x : α} {xs : List α} {y : α} [BEq α] :
          List.indexOf y (x :: xs) = bif x == y then 0 else List.indexOf y xs + 1

          lookup #

          @[simp]
          theorem List.lookup_cons_self {α : Type u_2} [BEq α] [LawfulBEq α] {β✝ : Type u_1} {b : β✝} {es : List (α × β✝)} {k : α} :
          List.lookup k ((k, b) :: es) = some b
          theorem List.lookup_eq_findSome? {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} (l : List (α × β)) (k : α) :
          List.lookup k l = List.findSome? (fun (p : α × β) => if (k == p.fst) = true then some p.snd else none) l
          @[simp]
          theorem List.lookup_eq_none_iff {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {l : List (α × β)} {k : α} :
          List.lookup k l = none ↔ ∀ (p : α × β), p ∈ l → (k != p.fst) = true
          @[simp]
          theorem List.lookup_isSome_iff {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {l : List (α × β)} {k : α} :
          (List.lookup k l).isSome = true ↔ ∃ (p : α × β), p ∈ l ∧ (k == p.fst) = true
          theorem List.lookup_eq_some_iff {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {l : List (α × β)} {k : α} {b : β} :
          List.lookup k l = some b ↔ ∃ (l₁ : List (α × β)), ∃ (l₂ : List (α × β)), l = l₁ ++ (k, b) :: l₂ ∧ ∀ (p : α × β), p ∈ l₁ → (k != p.fst) = true
          theorem List.lookup_append {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {l₁ l₂ : List (α × β)} {k : α} :
          List.lookup k (l₁ ++ l₂) = (List.lookup k l₁).or (List.lookup k l₂)
          theorem List.lookup_replicate {α : Type u_2} [BEq α] [LawfulBEq α] {n : Nat} {a : α} {α✝ : Type u_1} {b : α✝} {k : α} :
          List.lookup k (List.replicate n (a, b)) = if n = 0 then none else if (k == a) = true then some b else none
          theorem List.lookup_replicate_of_pos {α : Type u_2} [BEq α] [LawfulBEq α] {n : Nat} {a : α} {α✝ : Type u_1} {b : α✝} {k : α} (h : 0 < n) :
          List.lookup k (List.replicate n (a, b)) = if (k == a) = true then some b else none
          theorem List.lookup_replicate_self {α : Type u_2} [BEq α] [LawfulBEq α] {n : Nat} {α✝ : Type u_1} {b : α✝} {a : α} :
          List.lookup a (List.replicate n (a, b)) = if n = 0 then none else some b
          @[simp]
          theorem List.lookup_replicate_self_of_pos {α : Type u_2} [BEq α] [LawfulBEq α] {n : Nat} {α✝ : Type u_1} {b : α✝} {a : α} (h : 0 < n) :
          @[simp]
          theorem List.lookup_replicate_ne {α : Type u_2} [BEq α] [LawfulBEq α] {a : α} {n : Nat} {α✝ : Type u_1} {b : α✝} {k : α} (h : (!k == a) = true) :
          List.lookup k (List.replicate n (a, b)) = none
          theorem List.Sublist.lookup_isSome {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {l₁ l₂ : List (α × β)} (h : l₁.Sublist l₂) :
          (List.lookup k l₁).isSome = true → (List.lookup k l₂).isSome = true
          theorem List.Sublist.lookup_eq_none {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {l₁ l₂ : List (α × β)} (h : l₁.Sublist l₂) :
          List.lookup k l₂ = none → List.lookup k l₁ = none
          theorem List.IsPrefix.lookup_eq_some {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {b : β} {l₁ l₂ : List (α × β)} (h : l₁ <+: l₂) :
          List.lookup k l₁ = some b → List.lookup k l₂ = some b
          theorem List.IsPrefix.lookup_eq_none {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {l₁ l₂ : List (α × β)} (h : l₁ <+: l₂) :
          List.lookup k l₂ = none → List.lookup k l₁ = none
          theorem List.IsSuffix.lookup_eq_none {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {l₁ l₂ : List (α × β)} (h : l₁ <:+ l₂) :
          List.lookup k l₂ = none → List.lookup k l₁ = none
          theorem List.IsInfix.lookup_eq_none {α : Type u_2} [BEq α] [LawfulBEq α] {β : Type u_1} {k : α} {l₁ l₂ : List (α × β)} (h : l₁ <:+: l₂) :
          List.lookup k l₂ = none → List.lookup k l₁ = none

          Deprecations #

          @[reducible, inline, deprecated List.head_flatten]
          abbrev List.head_join {α : Type u_1} {L : List (List α)} (h : ∃ (l : List α), l ∈ L ∧ l ≠ []) :
          L.flatten.head ⋯ = (List.findSome? (fun (l : List α) => l.head?) L).get ⋯
          Equations
          Instances For
            @[reducible, inline, deprecated List.getLast_flatten]
            abbrev List.getLast_join {α : Type u_1} {L : List (List α)} (h : ∃ (l : List α), l ∈ L ∧ l ≠ []) :
            L.flatten.getLast ⋯ = (List.findSome? (fun (l : List α) => l.getLast?) L.reverse).get ⋯
            Equations
            Instances For
              @[reducible, inline, deprecated List.find?_flatten]
              abbrev List.find?_join {α : Type u_1} (xs : List (List α)) (p : α → Bool) :
              List.find? p xs.flatten = List.findSome? (fun (x : List α) => List.find? p x) xs
              Equations
              Instances For
                @[reducible, inline, deprecated List.find?_flatten_eq_none]
                abbrev List.find?_join_eq_none {α : Type u_1} {xs : List (List α)} {p : α → Bool} :
                List.find? p xs.flatten = none ↔ ∀ (ys : List α), ys ∈ xs → ∀ (x : α), x ∈ ys → (!p x) = true
                Equations
                Instances For
                  @[reducible, inline, deprecated List.find?_flatten_eq_some]
                  abbrev List.find?_join_eq_some {α : Type u_1} {xs : List (List α)} {p : α → Bool} {a : α} :
                  List.find? p xs.flatten = some a ↔ p a = true ∧ ∃ (as : List (List α)), ∃ (ys : List α), ∃ (zs : List α), ∃ (bs : List (List α)), xs = as ++ (ys ++ a :: zs) :: bs ∧ (∀ (a : List α), a ∈ as → ∀ (x : α), x ∈ a → (!p x) = true) ∧ ∀ (x : α), x ∈ ys → (!p x) = true
                  Equations
                  Instances For
                    @[reducible, inline, deprecated List.findIdx?_flatten]
                    abbrev List.findIdx?_join {α : Type u_1} {l : List (List α)} {p : α → Bool} :
                    List.findIdx? p l.flatten = Option.map (fun (i : Nat) => (List.map List.length (List.take i l)).sum + (Option.map (fun (xs : List α) => List.findIdx p xs) l[i]?).getD 0) (List.findIdx? (fun (x : List α) => x.any p) l)
                    Equations
                    Instances For