#set-bit #bit-manipulation #bits #bit-set #bit #iterator #flags

no-std bit-iter

Iterate forward or backwards over the positions of set bits in a word

6 releases (stable)

1.2.0 Aug 24, 2023
1.1.1 May 18, 2022
1.1.0 Nov 12, 2021
0.1.6 Sep 29, 2021
0.1.4 Jun 23, 2021

#609 in Algorithms

Download history 2766/week @ 2024-07-23 700/week @ 2024-07-30 960/week @ 2024-08-06 792/week @ 2024-08-13 775/week @ 2024-08-20 841/week @ 2024-08-27 619/week @ 2024-09-03 667/week @ 2024-09-10 566/week @ 2024-09-17 995/week @ 2024-09-24 1162/week @ 2024-10-01 1234/week @ 2024-10-08 1465/week @ 2024-10-15 2199/week @ 2024-10-22 1100/week @ 2024-10-29 1170/week @ 2024-11-05

6,137 downloads per month
Used in 5 crates

MIT license

13KB
258 lines

bit-iter

Test results Crates.io Documentation

Iterate forwards or backwards over the positions of bits set in a word.

A BitIter may be constructed from any integral value, and returns the positions of the 1 bits in ascending order.

BitIter implements DoubleEndedIterator, so you can iterate over the positions of the set bits in descending order too.

Example

fn main() {
    use bit_iter::*;

    let x : u32 = 0x10001;

    for b in BitIter::from(x) {
        println!("Bit {} is set.", b);
    }

    println!("In reverse order:");

    for b in BitIter::from(x).rev() {
        println!("Bit {} is set.", b);
    }
}

Output:

Bit 0 is set.
Bit 16 is set.
In reverse order:
Bit 16 is set.
Bit 0 is set.

Minimum supported Rust version (MSRV) policy

bit-iter's current minimum supported Rust version (MSRV) is 1.53.0.

bit-iter is guaranteed to compile with that version. It might also compile with older versions, but that could change in a future patch release.

If the MSRV of bit-iter changes, that will be done in a minor version release (e.g. 1.2.x -> 1.3.0).

No runtime deps