Idris2Doc : Language.JSON.Data

Language.JSON.Data

Definitions

dataJSON : Type
Totality: total
Visibility: public export
Constructors:
JNull : JSON
JBoolean : Bool->JSON
JNumber : Double->JSON
JString : String->JSON
JArray : ListJSON->JSON
JObject : List (String, JSON) ->JSON

Hints:
Cast () JSON
CastBoolJSON
CastDoubleJSON
CastStringJSON
CastaJSON=>Cast (Lista) JSON
ShowJSON
format : {default0_ : Nat} ->Nat->JSON->String
  Format a JSON value, indenting by `n` spaces per nesting level.

@curr The current indentation amount, measured in spaces.
@n The amount of spaces to indent per nesting level.

Totality: total
Visibility: export