dhall-nix-lib/JSON/null.dhall

28 lines
515 B
Text
Raw Normal View History

2022-09-02 09:03:27 +00:00
{-|
Create a JSON null
```
let JSON = ./package.dhall
in JSON.render JSON.null
= "null"
```
-}
let JSON = ./Type.dhall
let null
: JSON
= λ(JSON : Type) →
λ ( json
: { array : List JSON → JSON
, bool : Bool → JSON
, double : Double → JSON
, integer : Integer → JSON
, null : JSON
, object : List { mapKey : Text, mapValue : JSON } → JSON
, string : Text → JSON
}
) →
json.null
in null