Equations
- Lean.instInhabitedDataValue = { default := Lean.DataValue.ofString default }
Equations
- Lean.instBEqDataValue = { beq := Lean.beqDataValue✝ }
Equations
- Lean.instReprDataValue = { reprPrec := Lean.reprDataValue✝ }
@[export lean_data_value_beq]
Equations
Instances For
@[export lean_mk_bool_data_value]
Instances For
Equations
- (Lean.DataValue.ofString a).sameCtor (Lean.DataValue.ofString b) = true
- (Lean.DataValue.ofBool a).sameCtor (Lean.DataValue.ofBool b) = true
- (Lean.DataValue.ofName a).sameCtor (Lean.DataValue.ofName b) = true
- (Lean.DataValue.ofNat a).sameCtor (Lean.DataValue.ofNat b) = true
- (Lean.DataValue.ofInt a).sameCtor (Lean.DataValue.ofInt b) = true
- (Lean.DataValue.ofSyntax a).sameCtor (Lean.DataValue.ofSyntax b) = true
- x✝¹.sameCtor x✝ = false
Instances For
@[export lean_data_value_to_string]
Equations
Instances For
Equations
- Lean.instToStringDataValue = { toString := Lean.DataValue.str }
Equations
- Lean.instCoeStringDataValue = { coe := Lean.DataValue.ofString }
Equations
- Lean.instCoeBoolDataValue = { coe := Lean.DataValue.ofBool }
Equations
- Lean.instCoeNameDataValue = { coe := Lean.DataValue.ofName }
Equations
- Lean.instCoeNatDataValue = { coe := Lean.DataValue.ofNat }
Equations
- Lean.instCoeIntDataValue = { coe := Lean.DataValue.ofInt }
Equations
- Lean.instCoeSyntaxDataValue = { coe := Lean.DataValue.ofSyntax }
Equations
- Lean.instInhabitedKVMap = { default := { entries := default } }
Equations
- Lean.instReprKVMap = { reprPrec := Lean.reprKVMap✝ }
Equations
- Lean.KVMap.instToString = { toString := fun (m : Lean.KVMap) => toString m.entries }
Instances For
Equations
Instances For
Equations
- { entries := m }.insert x✝¹ x✝ = { entries := Lean.KVMap.insertCore m x✝¹ x✝ }
Instances For
Equations
Instances For
Erase an entry from the map
Equations
- { entries := m }.erase x✝ = { entries := List.filter (fun (a : Lean.Name × Lean.DataValue) => decide (a.fst ≠ x✝)) m }
Instances For
Equations
- m.getString k defVal = match m.find k with | some (Lean.DataValue.ofString v) => v | x => defVal
Instances For
Equations
- m.getNat k defVal = match m.find k with | some (Lean.DataValue.ofNat v) => v | x => defVal
Instances For
Equations
- m.getInt k defVal = match m.find k with | some (Lean.DataValue.ofInt v) => v | x => defVal
Instances For
Equations
- m.getBool k defVal = match m.find k with | some (Lean.DataValue.ofBool v) => v | x => defVal
Instances For
Equations
- m.getName k defVal = match m.find k with | some (Lean.DataValue.ofName v) => v | x => defVal
Instances For
Equations
- m.getSyntax k defVal = match m.find k with | some (Lean.DataValue.ofSyntax v) => v | x => defVal
Instances For
Instances For
Equations
Instances For
Equations
Instances For
Equations
Instances For
Equations
Instances For
Instances For
Update a String
entry based on its current value.
Instances For
Update a Name
entry based on its current value.
Equations
Instances For
Update a Syntax
entry based on its current value.
Instances For
Equations
- Lean.KVMap.instForInProdNameDataValue = { forIn := fun {β : Type ?u.15} [Monad m] => Lean.KVMap.forIn }
Instances For
Equations
- Lean.KVMap.instValueDataValue = { toDataValue := id, ofDataValue? := some }
Equations
- Lean.KVMap.instValueBool = { toDataValue := Lean.DataValue.ofBool, ofDataValue? := fun (x : Lean.DataValue) => match x with | Lean.DataValue.ofBool b => some b | x => none }
Equations
- Lean.KVMap.instValueNat = { toDataValue := Lean.DataValue.ofNat, ofDataValue? := fun (x : Lean.DataValue) => match x with | Lean.DataValue.ofNat n => some n | x => none }
Equations
- Lean.KVMap.instValueInt = { toDataValue := Lean.DataValue.ofInt, ofDataValue? := fun (x : Lean.DataValue) => match x with | Lean.DataValue.ofInt i => some i | x => none }
Equations
- Lean.KVMap.instValueName = { toDataValue := Lean.DataValue.ofName, ofDataValue? := fun (x : Lean.DataValue) => match x with | Lean.DataValue.ofName n => some n | x => none }
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.