@@ -46,7 +46,7 @@ data JNull :: *
4646``` purescript
4747instance eqJNull :: Eq JNull
4848instance ordJNull :: Ord JNull
49- instance showJsonNull :: Show JNull
49+ instance showJNull :: Show JNull
5050```
5151
5252#### ` Json `
@@ -57,9 +57,9 @@ data Json :: *
5757
5858##### Instances
5959``` purescript
60- instance showJson :: Show Json
6160instance eqJson :: Eq Json
6261instance ordJson :: Ord Json
62+ instance showJson :: Show Json
6363```
6464
6565#### ` foldJson `
@@ -104,12 +104,6 @@ foldJsonArray :: forall a. a -> (JArray -> a) -> Json -> a
104104foldJsonObject :: forall a. a -> (JObject -> a) -> Json -> a
105105```
106106
107- #### ` isJsonType `
108-
109- ``` purescript
110- isJsonType :: forall a. (Boolean -> (a -> Boolean) -> Json -> Boolean) -> Json -> Boolean
111- ```
112-
113107#### ` isNull `
114108
115109``` purescript
@@ -218,6 +212,12 @@ fromArray :: JArray -> Json
218212fromObject :: JObject -> Json
219213```
220214
215+ #### ` jsonNull `
216+
217+ ``` purescript
218+ jsonNull :: Json
219+ ```
220+
221221#### ` jsonTrue `
222222
223223``` purescript
@@ -236,18 +236,6 @@ jsonFalse :: Json
236236jsonZero :: Json
237237```
238238
239- #### ` jsonNull `
240-
241- ``` purescript
242- jsonNull :: Json
243- ```
244-
245- #### ` jsonEmptyString `
246-
247- ``` purescript
248- jsonEmptyString :: Json
249- ```
250-
251239#### ` jsonEmptyArray `
252240
253241``` purescript
@@ -272,76 +260,4 @@ jsonSingletonArray :: Json -> Json
272260jsonSingletonObject :: String -> Json -> Json
273261```
274262
275- #### ` nullL `
276-
277- ``` purescript
278- nullL :: PrismP Json JNull
279- ```
280-
281- #### ` booleanL `
282-
283- ``` purescript
284- booleanL :: PrismP Json JBoolean
285- ```
286-
287- #### ` numberL `
288-
289- ``` purescript
290- numberL :: PrismP Json JNumber
291- ```
292-
293- #### ` stringL `
294-
295- ``` purescript
296- stringL :: PrismP Json JString
297- ```
298-
299- #### ` arrayL `
300-
301- ``` purescript
302- arrayL :: PrismP Json JArray
303- ```
304-
305- #### ` objectL `
306-
307- ``` purescript
308- objectL :: PrismP Json JObject
309- ```
310-
311- #### ` jsonNullL `
312-
313- ``` purescript
314- jsonNullL :: TraversalP Json Json
315- ```
316-
317- #### ` jsonBooleanL `
318-
319- ``` purescript
320- jsonBooleanL :: TraversalP Json Json
321- ```
322-
323- #### ` jsonNumberL `
324-
325- ``` purescript
326- jsonNumberL :: TraversalP Json Json
327- ```
328-
329- #### ` jsonStringL `
330-
331- ``` purescript
332- jsonStringL :: TraversalP Json Json
333- ```
334-
335- #### ` jsonArrayL `
336-
337- ``` purescript
338- jsonArrayL :: TraversalP Json Json
339- ```
340-
341- #### ` jsonObjectL `
342-
343- ``` purescript
344- jsonObjectL :: TraversalP Json Json
345- ```
346-
347263
0 commit comments