giga-chess 0.5.0

A rust chess library built for performance, handling game logic and legal/best move generation.
Documentation
1
2
3
pub fn u16_get_bit(number: u16, index: u8) -> bool {
    (number & (1 << index)) != 0
}