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

Missing pattern match to bytes #20

Closed
fogfish opened this issue Jun 26, 2020 · 0 comments · Fixed by #21
Closed

Missing pattern match to bytes #20

fogfish opened this issue Jun 26, 2020 · 0 comments · Fixed by #21
Labels

Comments

@fogfish
Copy link
Owner

fogfish commented Jun 26, 2020

...
ƒ.Bytes(&x),
ƒ.Value(&x).String("xxx"),
...

String fails to compare byte with string. It requires

...
ƒ.Bytes(&x),
ƒ.Value(&x).Bytes([]byte{"xxx"}),
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant