-
Notifications
You must be signed in to change notification settings - Fork 178
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
Rust Bindings: Replacing slices of references to iterators of references for aggregation #198
Comments
Formally speaking it's unreasonable to expect that users would have to modify their code unless we also increase the non-minor version. One can discuss that, but meanwhile why not start by suggesting an additional interface, say |
Having a As for how users will have to modify their code if it's replaced, I think the only scenario will be one like this: fn test() {
let references_collection: [&usize; 4] = [&0, &0, &0, &0];
// Works
slice_of_ref(&references_collection);
// Does not work, is a IntoIterator<Item = &&usize>
into_iter_of_ref(&references_collection);
}
fn slice_of_ref(slice: &[&usize]) { }
fn into_iter_of_ref<'a>(slice: impl IntoIterator<Item = &'a usize>) { } And can be fixed in either of these 2 ways: // Consume collection, most likely not ideal
into_iter_of_ref(references_collection);
// Copy to remove one reference
into_iter_of_ref(references_collection.iter().copied()); This could be possibly be remedied using some other generic trait, though I don't know of such way currently, and is most likely is not possible in current rust. |
Since the crate is currently on major version
|
Currently, functions like aggregate require a slice of references as input, however these functions do not necessarily require a slice and can be easily changed to accept any iterator instead. I'd be interested in making a PR for this where
AggregatePublicKey
andAggregateSignature
's aggregation functions replace&[&[T]
withimpl IntoIterator<Item = &T>
. This would require some users of the library to change code, but allows them to avoid allocating to a vector, providing a performance benefit and simplifying code.The text was updated successfully, but these errors were encountered: