diff --git a/src/bitboard.rs b/src/bitboard.rs index 8020564..a34a9ec 100644 --- a/src/bitboard.rs +++ b/src/bitboard.rs @@ -63,6 +63,11 @@ impl Bitboard { self.0 |= 1 << square as u8; } + #[inline] + pub const fn remove(&mut self, square: Square) { + todo!() + } + /// Returns `true` if the bitboard contains the given square. #[inline] pub const fn contains(&self, square: Square) -> bool {