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
Problem: have a more efficient way to create records with more than 2 keys (instead of discarding 2 or 3 hashmaps)
Solution: have a builder patter for Record, something like:
new Record.Builder().entry(k1, v1).entry(k2, v2)....build()
The text was updated successfully, but these errors were encountered:
232cd93
dfa1
No branches or pull requests
Problem:
have a more efficient way to create records with more than 2 keys (instead of discarding 2 or 3 hashmaps)
Solution:
have a builder patter for Record, something like:
new Record.Builder().entry(k1, v1).entry(k2, v2)....build()
The text was updated successfully, but these errors were encountered: