We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Most of the times we returns a constant for the Map method on the Option receiver. For example, we might have something like :
Map
mo.Some("foobar").Map(func(value string) (string, bool) { return strings.ToUpper(value), true }).MustGet()
Maybe we can get a little better with something like:
mo.Some("foobar").MapTrue(func(value string) string { return strings.ToUpper(value) }).MustGet()
What's your opinion about that ?
Regards, Patrick
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Most of the times we returns a constant for the
Map
method on the Option receiver. For example, we might have something like :Maybe we can get a little better with something like:
What's your opinion about that ?
Regards,
Patrick
The text was updated successfully, but these errors were encountered: