Generic Idris values.
The `String` in the literals is the text for the literals "as is".
A chain of infix constructors means that they appeared in the input string
without parentheses, i.e
`1 :+: 2 :*: 3` is represented with `InfixCons 1 [(":+:",2),(":*:",3)]`, whereas
`1 :+: (2 :*: 3)` is represented with `InfixCons 1 [(":+:",InfixCons 2 [(":*:",3)])]`.
Totality: total
Visibility: public export
Constructors:
Con : VName -> List Value -> Value InfixCons : Value -> List (VName, Value) -> Value Rec : VName -> List (VName, Value) -> Value Tuple : Value -> Value -> List Value -> Value Lst : List Value -> Value Neg : Value -> Value Natural : String -> Value Dbl : String -> Value Chr : String -> Value Str : String -> Value
Hints:
Eq Value Show Value