Skip to content

Instantly share code, notes, and snippets.

@zwilias
Created April 1, 2017 14:00
Show Gist options
  • Save zwilias/5a27f64af22e1a5da6ea9b4a28dcab37 to your computer and use it in GitHub Desktop.
Save zwilias/5a27f64af22e1a5da6ea9b4a28dcab37 to your computer and use it in GitHub Desktop.
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