[][src]Struct chess_move_gen::DBB

pub struct DBB(pub u64x2);

Double bitboard used with SSE3 intrinsics

Implementations

impl DBB[src]

pub fn new(a: BB, b: BB) -> DBB[src]

pub fn splat(source: BB) -> DBB[src]

pub fn extract(&self) -> (BB, BB)[src]

pub fn bswap(&self) -> DBB[src]

pub fn occluded_east_fill(&self, empty: DBB) -> DBB[src]

pub fn east_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_east_fill(&self, empty: DBB) -> DBB[src]

pub fn north_east_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_fill(&self, empty: DBB) -> DBB[src]

pub fn north_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_east_fill(&self, empty: DBB) -> DBB[src]

pub fn south_east_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_west_fill(&self, empty: DBB) -> DBB[src]

pub fn west_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_west_fill(&self, empty: DBB) -> DBB[src]

pub fn south_west_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_west_fill(&self, empty: DBB) -> DBB[src]

pub fn north_west_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_fill(&self, empty: DBB) -> DBB[src]

pub fn south_attacks(&self, empty: DBB) -> DBB[src]

pub fn occluded_east_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_east_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_east_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_west_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_west_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_north_west_fill_with_occluders(&self, empty: DBB) -> DBB[src]

pub fn occluded_south_fill_with_occluders(&self, empty: DBB) -> DBB[src]

Trait Implementations

impl BitAnd<DBB> for DBB[src]

type Output = DBB

The resulting type after applying the & operator.

impl BitOr<DBB> for DBB[src]

type Output = DBB

The resulting type after applying the | operator.

impl BitXor<DBB> for DBB[src]

type Output = DBB

The resulting type after applying the ^ operator.

impl Clone for DBB[src]

impl Copy for DBB[src]

impl Shl<u32> for DBB[src]

type Output = DBB

The resulting type after applying the << operator.

impl Sub<DBB> for DBB[src]

type Output = DBB

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for DBB

impl Send for DBB

impl Sync for DBB

impl Unpin for DBB

impl UnwindSafe for DBB

Blanket Implementations

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

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,