Skip to content
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

Add count_ones, count_zeros methods #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

canndrew
Copy link

Pretty self-explanatory. Add methods for counting the number of ones/zeros in a SmallBitVec.

Copy link
Member

@emilio emilio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this can be much simpler, unless I'm missing something.


if self.is_inline() {
let mask = inline_ones(len);
(self.data & mask).count_ones() as usize
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer to return here and deindent the rest.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you really need the & mask for this case? The other bits should always be zero.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I lie, I recall that we use the last non-zero bit as a sentinel, so you do need this.

(self.data & mask).count_ones() as usize
} else {
let mut count = 0;
for &storage in self.buffer() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same, can't this loop just do count += storage.count_ones()?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can do this though.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And you cannot, because we don't clear storage when we pop(), so never mind :)

}

/// Counts the number of bits in the vector that are set to zero/false
pub fn count_zeros(&self) -> usize {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why can't this be self.len() - self.count_ones()?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants