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

Implement the Debug trait for BitVec #96

Merged
merged 2 commits into from
Jul 4, 2024
Merged

Implement the Debug trait for BitVec #96

merged 2 commits into from
Jul 4, 2024

Conversation

wyhaya
Copy link
Contributor

@wyhaya wyhaya commented Jul 4, 2024

fn main() {
    let bits = BitVec::from_bytes(&[0, 0, 0, 0, 1]);
    dbg!(bits);
}
[examples/basic.rs:6:5] bits = BitVec {
    storage: "00000000000000000000000000000000 00000001",
    nbits: 40,
}

src/lib.rs Outdated Show resolved Hide resolved
src/lib.rs Outdated Show resolved Hide resolved
src/lib.rs Show resolved Hide resolved
@wyhaya wyhaya requested a review from pczarn July 4, 2024 08:38
@pczarn
Copy link
Contributor

pczarn commented Jul 4, 2024

Thanks! Merging

@pczarn pczarn merged commit 2bdf84c into contain-rs:master Jul 4, 2024
5 checks passed
This was referenced Jul 4, 2024
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