Module

Codec.Json.Errors.NoError

Package
purescript-json-codecs
Repository
jordanmartinez/purescript-json-codecs

Defines the handlers and other utilities for when you do not want any error when a JSON decoder fails.

#runJsonDecoderNoErrs Source

#runJsonDecoderNoErrs' Source

runJsonDecoderNoErrs' :: forall a extra. extra -> Json -> JsonDecoder Unit extra a -> Maybe a

#decodeNoErrs Source

decodeNoErrs :: forall a. Json -> JsonCodec Unit Unit a -> Maybe a

#decodeNoErrs' Source

decodeNoErrs' :: forall a extra. extra -> Json -> JsonCodec Unit extra a -> Maybe a

#noErrD Source

noErrD :: forall from to. JsonDecoder' Unit Unit from to -> JsonDecoder' Unit Unit from to

#noErrC Source

noErrC :: forall from to. JsonCodec' Unit Unit from to -> JsonCodec' Unit Unit from to