forked from argonaut-io/argonaut-hs
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from cryogenian/aggregation
aggregation
- Loading branch information
Showing
20 changed files
with
131 additions
and
2,071 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## Module Data.Argonaut.Prisms | ||
|
||
#### `_Null` | ||
|
||
``` purescript | ||
_Null :: PrismP Json JNull | ||
``` | ||
|
||
#### `_Boolean` | ||
|
||
``` purescript | ||
_Boolean :: PrismP Json JBoolean | ||
``` | ||
|
||
#### `_Number` | ||
|
||
``` purescript | ||
_Number :: PrismP Json JNumber | ||
``` | ||
|
||
#### `_String` | ||
|
||
``` purescript | ||
_String :: PrismP Json JString | ||
``` | ||
|
||
#### `_Array` | ||
|
||
``` purescript | ||
_Array :: PrismP Json JArray | ||
``` | ||
|
||
#### `_Object` | ||
|
||
``` purescript | ||
_Object :: PrismP Json JObject | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## Module Data.Argonaut.Traversals | ||
|
||
#### `_JsonNull` | ||
|
||
``` purescript | ||
_JsonNull :: TraversalP Json Json | ||
``` | ||
|
||
#### `_JsonBoolean` | ||
|
||
``` purescript | ||
_JsonBoolean :: TraversalP Json Json | ||
``` | ||
|
||
#### `_JsonNumber` | ||
|
||
``` purescript | ||
_JsonNumber :: TraversalP Json Json | ||
``` | ||
|
||
#### `_JsonString` | ||
|
||
``` purescript | ||
_JsonString :: TraversalP Json Json | ||
``` | ||
|
||
#### `_JsonArray` | ||
|
||
``` purescript | ||
_JsonArray :: TraversalP Json Json | ||
``` | ||
|
||
#### `_JsonObject` | ||
|
||
``` purescript | ||
_JsonObject :: TraversalP Json Json | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.