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
The Query implementation for OffsetRangeQuery is currently obviously correct, but less than optimal.
fn containing(&self, mut offset: u64, index: &LeafIndex<T>, res: &mut [bool]) { let range = offset..offset + index.keys.count(); // shortcut test if !&self.0.intersects(&range) { res.clear(); } else { for i in 0..(index.keys.len()).min(res.len()) { if res[i] { res[i] = self.0.contains(&offset); } offset += 1; } } }
Obviously this can be done more efficiently than checking every single offset.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Query implementation for OffsetRangeQuery is currently obviously correct, but less than optimal.
Obviously this can be done more efficiently than checking every single offset.
The text was updated successfully, but these errors were encountered: