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 #22 from cryogenian/master
updated to 0.7
- Loading branch information
Showing
26 changed files
with
1,516 additions
and
854 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
bower_components/ | ||
node_modules/ | ||
output/ | ||
dist/ | ||
tmp/ | ||
npm-debug.log | ||
test/test.js |
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,3 @@ | ||
## Module Data.Argonaut | ||
|
||
|
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,35 @@ | ||
## Module Data.Argonaut.Combinators | ||
|
||
#### `(:=)` | ||
|
||
``` purescript | ||
(:=) :: forall a. (EncodeJson a) => String -> a -> JAssoc | ||
``` | ||
|
||
_non-associative / precedence 7_ | ||
|
||
#### `(~>)` | ||
|
||
``` purescript | ||
(~>) :: forall a. (EncodeJson a) => JAssoc -> a -> Json | ||
``` | ||
|
||
_right-associative / precedence 6_ | ||
|
||
#### `(?>>=)` | ||
|
||
``` purescript | ||
(?>>=) :: forall a b. Maybe a -> String -> Either String a | ||
``` | ||
|
||
_left-associative / precedence 1_ | ||
|
||
#### `(.?)` | ||
|
||
``` purescript | ||
(.?) :: forall a. (DecodeJson a) => JObject -> String -> Either String a | ||
``` | ||
|
||
_non-associative / precedence 7_ | ||
|
||
|
Oops, something went wrong.