@[inline]
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
@[inline]
Equations
- Lean.Json.Parser.lookahead p desc = do let c ← Lean.Parsec.peek! if p c then pure () else Lean.Parsec.fail ("expected " ++ desc)
Instances For
@[inline]
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[inline]
Equations
- Lean.Json.Parser.natNumDigits = do Lean.Json.Parser.lookahead (fun (c : Char) => '0' ≤ c ∧ c ≤ '9') "digit" Lean.Json.Parser.natCore 0 0
Instances For
@[inline]
Equations
- Lean.Json.Parser.natMaybeZero = do let __discr ← Lean.Json.Parser.natNumDigits match __discr with | (n, snd) => pure n
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
partial def
Lean.Json.Parser.objectCore
(anyCore : Lean.Parsec Lean.Json)
:
Lean.Parsec (Lean.RBNode String fun (x : String) => Lean.Json)
Equations
- Lean.Json.Parser.any = do Lean.Parsec.ws let res ← Lean.Json.Parser.anyCore Lean.Parsec.eof pure res