Struct myopic_core::BitBoard[][src]

pub struct BitBoard(pub u64);

A bitboard is a value type wrapping a 64 bit integer which represents a set of squares on a chess board. Each bit is mapped to a particular square on the board, 0 -> H1, 1 -> G1,…, 8 -> H2,…, 63 -> A8. For example if we know a piece to reside on a particular square we can use a bitboard to to capture the available moves for that piece.

Implementations

impl BitBoard[src]

pub fn contains(self, square: Square) -> bool[src]

Check if this bitboard contains a particular square.

pub fn subsumes(self, other: BitBoard) -> bool[src]

Check if this set is a superset of the other.

pub fn is_empty(self) -> bool[src]

Check if this bitboard is empty, i.e contains no squares.

pub fn is_populated(self) -> bool[src]

Check if this bitboard contains at least one square.

pub fn intersects(self, other: BitBoard) -> bool[src]

Check if the intersection of this bitboard and the other is non-empty.

pub fn size(self) -> usize[src]

Computes the number of squares in this bitboard using the popcount algorithm.

pub fn iter(self) -> impl Iterator<Item = Square>[src]

pub fn first(self) -> Option<Square>[src]

Finds the first square in this set if it is non-empty.

pub fn least_set_bit(self) -> BitBoard[src]

Returns a bitboard with the least set bit of this bitboard or nothing if this bitboard is empty.

pub fn cord(source: Square, target: Square) -> BitBoard[src]

Computes the ‘cord’ between two squares. Imagine a queen sat on the source square on and empty board. If the queen can move to the target square then this method returns the set of squares which the queen slides along to get to this target square (inclusive of both ends) otherwise the empty bitboard is returned.

pub const EMPTY: BitBoard[src]

The empty bitboard (set of no squares).

pub const ALL: BitBoard[src]

The complete bitboard (set of all squares).

pub const RANKS: [BitBoard; 8][src]

Array of bitboards represented the eight ranks, ordered 1 to 8.

pub const FILES: [BitBoard; 8][src]

Array of bitboards represented the eight files, ordered H to A.

Trait Implementations

impl BitAnd<BitBoard> for BitBoard[src]

type Output = Self

The resulting type after applying the & operator.

fn bitand(self, other: BitBoard) -> Self[src]

Performs the & operation. Read more

impl BitAnd<BitBoard> for Square[src]

type Output = BitBoard

The resulting type after applying the & operator.

fn bitand(self, other: BitBoard) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<Square> for BitBoard[src]

type Output = Self

The resulting type after applying the & operator.

fn bitand(self, other: Square) -> Self[src]

Performs the & operation. Read more

impl BitOr<BitBoard> for BitBoard[src]

type Output = Self

The resulting type after applying the | operator.

fn bitor(self, other: BitBoard) -> Self[src]

Performs the | operation. Read more

impl BitOr<BitBoard> for Square[src]

type Output = BitBoard

The resulting type after applying the | operator.

fn bitor(self, other: BitBoard) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<Square> for BitBoard[src]

type Output = Self

The resulting type after applying the | operator.

fn bitor(self, other: Square) -> Self[src]

Performs the | operation. Read more

impl BitOrAssign<BitBoard> for BitBoard[src]

fn bitor_assign(&mut self, rhs: BitBoard)[src]

Performs the |= operation. Read more

impl BitOrAssign<Square> for BitBoard[src]

fn bitor_assign(&mut self, rhs: Square)[src]

Performs the |= operation. Read more

impl BitXor<BitBoard> for BitBoard[src]

type Output = Self

The resulting type after applying the ^ operator.

fn bitxor(self, other: BitBoard) -> Self[src]

Performs the ^ operation. Read more

impl BitXor<Square> for BitBoard[src]

type Output = Self

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: Square) -> Self[src]

Performs the ^ operation. Read more

impl BitXorAssign<BitBoard> for BitBoard[src]

fn bitxor_assign(&mut self, rhs: BitBoard)[src]

Performs the ^= operation. Read more

impl BitXorAssign<Square> for BitBoard[src]

fn bitxor_assign(&mut self, rhs: Square)[src]

Performs the ^= operation. Read more

impl Clone for BitBoard[src]

fn clone(&self) -> BitBoard[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for BitBoard[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Display for BitBoard[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl FromIterator<BitBoard> for BitBoard[src]

We can collect an iterator of bitboards into a single bitboard under the logical OR binary operator on sets.

fn from_iter<I: IntoIterator<Item = BitBoard>>(iter: I) -> Self[src]

Creates a value from an iterator. Read more

impl FromIterator<Square> for BitBoard[src]

A set of squares can be built from an iterator traversing squares.

fn from_iter<I: IntoIterator<Item = Square>>(iter: I) -> Self[src]

Creates a value from an iterator. Read more

impl Hash for BitBoard[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl IntoIterator for BitBoard[src]

A bitboard is a set of squares and is therefore iterable.

type Item = Square

The type of the elements being iterated over.

type IntoIter = BitBoardIterator

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

impl Not for BitBoard[src]

type Output = Self

The resulting type after applying the ! operator.

fn not(self) -> Self[src]

Performs the unary ! operation. Read more

impl Ord for BitBoard[src]

fn cmp(&self, other: &BitBoard) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<BitBoard> for BitBoard[src]

fn eq(&self, other: &BitBoard) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &BitBoard) -> bool[src]

This method tests for !=.

impl PartialOrd<BitBoard> for BitBoard[src]

fn partial_cmp(&self, other: &BitBoard) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Reflectable for BitBoard[src]

fn reflect(&self) -> Self[src]

impl Shl<u8> for BitBoard[src]

type Output = Self

The resulting type after applying the << operator.

fn shl(self, shift: u8) -> Self[src]

Performs the << operation. Read more

impl Shr<u8> for BitBoard[src]

Operator implementations for bitboards which all use the underlying u64 value.

type Output = Self

The resulting type after applying the >> operator.

fn shr(self, shift: u8) -> Self[src]

Performs the >> operation. Read more

impl Sub<BitBoard> for BitBoard[src]

type Output = Self

The resulting type after applying the - operator.

fn sub(self, other: BitBoard) -> Self[src]

Performs the - operation. Read more

impl Sub<BitBoard> for Square[src]

type Output = BitBoard

The resulting type after applying the - operator.

fn sub(self, other: BitBoard) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<Square> for BitBoard[src]

type Output = Self

The resulting type after applying the - operator.

fn sub(self, other: Square) -> Self[src]

Performs the - operation. Read more

impl Copy for BitBoard[src]

impl Eq for BitBoard[src]

impl StructuralEq for BitBoard[src]

impl StructuralPartialEq for BitBoard[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.