[][src]Constant chess::EMPTY

pub const EMPTY: BitBoard;

An empty bitboard. It is sometimes useful to use !EMPTY to get the universe of squares.

    use chess::EMPTY;

    assert_eq!(EMPTY.count(), 0);

    assert_eq!((!EMPTY).count(), 64);