Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tagged.decoder, Tagged.encode #14

Open
Herteby opened this issue Feb 13, 2020 · 0 comments
Open

Tagged.decoder, Tagged.encode #14

Herteby opened this issue Feb 13, 2020 · 0 comments

Comments

@Herteby
Copy link

Herteby commented Feb 13, 2020

Decoding is probably the most common place where you tag values, so I think it'd be nice to have a function like this, instead of having to use Decode.map Tagger.tag

decoder : Decoder a -> Decoder (Tagged tag a)
decoder =
    Decode.map Tagged.tag

And same for encoding:

encode : (a -> Value) -> Tagged tag a -> Value
encode encoder =
    Tagged.untag >> encoder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant