Created
April 1, 2017 14:00
-
-
Save zwilias/5a27f64af22e1a5da6ea9b4a28dcab37 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
nodeDecoder : Decoder Node | |
nodeDecoder = | |
oneOf | |
[ intNodeDecoder | |
, stringNodeDecoder | |
] | |
intNodeDecoder : Decoder Node | |
intNodeDecoder = | |
map2 IntNode | |
(field "val" int) | |
(field "children" (list nodeDecoder)) | |
stringNodeDecoder : Decoder Node | |
stringNodeDecoder = | |
map2 StringNode | |
(field "val" string) | |
(field "children" (list nodeDecoder)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment