Documentation

Lean.Data.Json.Basic

Equations
Equations
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
  • { mantissa := m, exponent := 0 }.toString = m.repr
Equations
  • { mantissa := m, exponent := e }.shiftl x✝ = { mantissa := m * ↑(10 ^ (x✝ - e)), exponent := e - x✝ }
Equations
  • { mantissa := m, exponent := e }.shiftr x✝ = { mantissa := m, exponent := e + x✝ }
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
Equations
Equations

Attempts to convert a float to a JsonNumber, if the number isn't finite returns the appropriate string from "NaN", "Infinity", "-Infinity".

Equations
  • One or more equations did not get rendered due to their size.
def Lean.strLt (a b : String) :
Equations
Equations
  • One or more equations did not get rendered due to their size.
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations

Assuming both inputs o₁, o₂ are json objects, will compute {...o₁, ...o₂}. If o₁ is not a json object, o₂ will be returned.

Equations