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
I made an extension for BadgerHold allowing you to use it with generics support, for my pet projects: https://github.com/rlshukhov/generichold
BadgerHold
var item Item err := store.Get(key, &item)
GenericHold:
item, err := store.Get(key)
BadgerHold:
count, err := store.Count(&Item{}, nil)
count, err := store.Count(nil)
And yes, it's pass all BadgerHold unit tests.
The text was updated successfully, but these errors were encountered:
Very cool
Sorry, something went wrong.
No branches or pull requests
GenericHold
I made an extension for BadgerHold allowing you to use it with generics support, for my pet projects:
https://github.com/rlshukhov/generichold
Examples
BadgerHold
GenericHold:
BadgerHold:
GenericHold:
Tests
And yes, it's pass all BadgerHold unit tests.
The text was updated successfully, but these errors were encountered: