Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created December 5, 2015 20:27
Show Gist options
  • Save codedmart/b98bb309d41d12f3e3d7 to your computer and use it in GitHub Desktop.
Save codedmart/b98bb309d41d12f3e3d7 to your computer and use it in GitHub Desktop.
-- 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