odht 0.3.1

A Rust crate for hash tables that can be mapped from disk into memory without the need for up-front decoding.
Documentation
use core::num::NonZeroU16;

#[cfg(target_arch = "x86")]
use core::arch::x86;
#[cfg(target_arch = "x86_64")]
use core::arch::x86_64 as x86;

pub const GROUP_SIZE: usize = 16;

pub struct GroupQuery {
    matches: u16,
    empty: u16,
}

impl GroupQuery {
    #[inline]
    pub fn from(group: &[u8; GROUP_SIZE], h2: u8) -> GroupQuery {
        assert!(std::mem::size_of::<x86::__m128i>() == GROUP_SIZE);

        unsafe {
            let group = x86::_mm_loadu_si128(group as *const _ as *const x86::__m128i);
            let cmp_byte = x86::_mm_cmpeq_epi8(group, x86::_mm_set1_epi8(h2 as i8));
            let matches = x86::_mm_movemask_epi8(cmp_byte) as u16;
            let empty = x86::_mm_movemask_epi8(group) as u16;

            GroupQuery { matches, empty }
        }
    }

    #[inline]
    pub fn any_empty(&self) -> bool {
        self.empty != 0
    }

    #[inline]
    pub fn first_empty(&self) -> Option<usize> {
        Some(NonZeroU16::new(self.empty)?.trailing_zeros() as usize)
    }
}

impl Iterator for GroupQuery {
    type Item = usize;

    #[inline]
    fn next(&mut self) -> Option<usize> {
        let index = NonZeroU16::new(self.matches)?.trailing_zeros();

        // Clear the lowest bit
        // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan
        self.matches &= self.matches - 1;

        Some(index as usize)
    }
}