@[irreducible]
<
on string iterators. This coincides with <
on strings as lists.
Equations
Instances For
Equations
- String.LT' = { lt := fun (s₁ s₂ : String) => String.ltb s₁.iter s₂.iter = true }
Equations
- String.decidableLT = id inferInstance
@[irreducible]
def
String.ltb.inductionOn
{motive : String.Iterator → String.Iterator → Sort u}
(it₁ : String.Iterator)
(it₂ : String.Iterator)
(ind : (s₁ s₂ : String) →
(i₁ i₂ : String.Pos) →
{ s := s₂, i := i₂ }.hasNext = true →
{ s := s₁, i := i₁ }.hasNext = true →
s₁.get i₁ = s₂.get i₂ →
motive { s := s₁, i := i₁ }.next { s := s₂, i := i₂ }.next → motive { s := s₁, i := i₁ } { s := s₂, i := i₂ })
(eq : (s₁ s₂ : String) →
(i₁ i₂ : String.Pos) →
{ s := s₂, i := i₂ }.hasNext = true →
{ s := s₁, i := i₁ }.hasNext = true → ¬s₁.get i₁ = s₂.get i₂ → motive { s := s₁, i := i₁ } { s := s₂, i := i₂ })
(base₁ : (s₁ s₂ : String) →
(i₁ i₂ : String.Pos) →
{ s := s₂, i := i₂ }.hasNext = true →
¬{ s := s₁, i := i₁ }.hasNext = true → motive { s := s₁, i := i₁ } { s := s₂, i := i₂ })
(base₂ : (s₁ s₂ : String) →
(i₁ i₂ : String.Pos) → ¬{ s := s₂, i := i₂ }.hasNext = true → motive { s := s₁, i := i₁ } { s := s₂, i := i₂ })
:
motive it₁ it₂
Induction on String.ltb
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
theorem
String.ltb_cons_addChar
(c : Char)
(cs₁ : List Char)
(cs₂ : List Char)
(i₁ : String.Pos)
(i₂ : String.Pos)
:
String.ltb { s := { data := c :: cs₁ }, i := i₁ + c } { s := { data := c :: cs₂ }, i := i₂ + c } = String.ltb { s := { data := cs₁ }, i := i₁ } { s := { data := cs₂ }, i := i₂ }
Equations
- String.decidableLE = id inferInstance
@[deprecated String.asString_nil]
Alias of String.asString_nil
.
@[deprecated String.asString_toList]
Alias of String.asString_toList
.
Equations
- One or more equations did not get rendered due to their size.
@[deprecated List.toList_asString]
Alias of List.toList_asString
.