Created
December 5, 2015 20:27
-
-
Save codedmart/b98bb309d41d12f3e3d7 to your computer and use it in GitHub Desktop.
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
-- from purescript-argonaut https://github.com/purescript-contrib/purescript-argonaut-codecs/blob/master/src/Data/Argonaut/Combinators.purs#L34-L35 | |
-- obj .? "foo" | |
(.?) :: forall a. (DecodeJson a) => JObject -> String -> Either String a | |
(.?) o s = maybe (Left $ "Expected field " ++ show s) decodeJson (M.lookup s o) | |
-- I would like to do something like | |
-- obj `at` ["foo", "bar"] | |
at :: forall a. (DecodeJson a) => JObject -> Array String -> Either String a | |
at obj fields = fold (.?) obj (reverse fields) | |
-- but this errors with: | |
-- Could not match type | |
-- | |
-- StrMap Json | |
-- | |
-- with type | |
-- | |
-- String |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment