1
0
Fork 0

text records

This commit is contained in:
Paul-Nicolas Madelaine 2025-10-19 16:45:33 +02:00
parent 0e65b4f927
commit bbe65b74f4
6 changed files with 173 additions and 167 deletions

View file

@ -57,7 +57,7 @@ impl Bitboard {
self.0 & (1 << square as u8) != 0
}
/// Returns the mirror of the bitboard (see [`Setup::mirror`]).
/// Returns the mirror of the bitboard (see [`Setup::mirror`](crate::setup::Setup::mirror)).
#[inline]
pub fn mirror(self) -> Bitboard {
let [a, b, c, d, e, f, g, h] = self.0.to_le_bytes();