-
Notifications
You must be signed in to change notification settings - Fork 233
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
Bring all ScalarBigXXXStore
methods into consistency with the types defined in the stores
package
#7632
Comments
addAll
method insufficiently implemented or tested.addAll
methods insufficiently implemented or tested.
Also agoric-sdk/packages/store/src/stores/scalarMapStore.js Lines 100 to 101 in 09b993a
addAll methods, so it makes sense that they were omitted together.
|
I don't understand what this means. Are |
As I was working through how to apply the fixes for this, I discovered another error: it appears we have an internal-only operation on sets ( |
Concur! |
addAll
methods insufficiently implemented or tested.ScalarBigXXXStore
methods into consistency with the types defined in the stores
package
Please read endojs/endo#1583 ! Important (but very non urgent) |
The MapStore and SetStore
addAll
methods are correctly typed and implemented by@agoric/store
. But it lacks both explanation and tests.The virtual and durable MapStores fail to implement
addAll
at all. The virtual and durable SetStores implementations ofaddAll
are incomplete: they correctly recognize and process anIterable
argument. But they do not recognize aCopySet
argument.The text was updated successfully, but these errors were encountered: