-
Notifications
You must be signed in to change notification settings - Fork 1
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
Optimize encoders and skip nul fields #247
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding the tests as well!
|
||
def contramap[B](f: B => A): ScynamoEncoder[B] = value => self.encode(f(value)) | ||
def contramap[B](f: B => A): ScynamoEncoder[B] = | ||
ScynamoEncoder.instance(value => self.encode(f(value))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Nitpicking:) I'm irritated by all these new line breaks. Do you make them on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes - I find it hard to read such long lines without a break
Also add
Contravariant
instances (enable use ofnarrow
)Sorry for the big PR 🙈
Fixes #246