petgraph / fixedbitset

A simple bitset container for Rust
https://docs.rs/fixedbitset/
Apache License 2.0
121 stars 45 forks source link

Add an owned iterator: IntoOnes #103

Closed james7132 closed 6 months ago

james7132 commented 6 months ago

This PR adds an owned iterator IntoOnes that acts identically to Ones<'a> but consumes the provided FixedBitset.

Fixes #45.