Skip to main content

Shape

Struct Shape 

Source
pub struct Shape { /* private fields */ }
Expand description

The shape of a regular board: the size of each of its dimensions.

Dimensions are ordered outermost first: for a 3D board, dimensions() is [layers, ranks, files]; for 2D, [ranks, files]; for 1D, [files]. This matches the FEEN separator depth — the deepest separator group splits the outermost dimension.

A Shape holds between 1 and MAX_DIMENSIONS dimensions, each of size 1 to crate::MAX_DIMENSION_SIZE.

§Invariant

Entries beyond the active dimension count are always zero, so the derived equality and hashing compare only the meaningful dimensions.

Implementations§

Source§

impl Shape

Source

pub const fn new(dimensions: &[u8]) -> Option<Self>

Builds a shape from its dimension sizes, outermost first.

Returns None if there are zero dimensions, more than MAX_DIMENSIONS, or any dimension of size zero. (Sizes above crate::MAX_DIMENSION_SIZE are unrepresentable, since each is a u8.)

§Examples
use sashite_feen::Shape;

let s = Shape::new(&[9, 9]).unwrap();
assert_eq!(s.dimensions(), &[9, 9]);
assert_eq!(s.dimension_count(), 2);
assert_eq!(s.square_count(), 81);

assert!(Shape::new(&[]).is_none()); // need at least one dimension
assert!(Shape::new(&[2, 2, 2, 2]).is_none()); // too many dimensions
assert!(Shape::new(&[8, 0]).is_none()); // a dimension cannot be empty
Source

pub fn dimensions(&self) -> &[u8]

Returns the dimension sizes, outermost first (length 1 to MAX_DIMENSIONS).

Source

pub const fn dimension_count(&self) -> usize

Returns the number of dimensions (1, 2, or 3).

Source

pub const fn square_count(&self) -> u32

Returns the total number of squares: the product of the dimension sizes.

The maximum is 255^3 = 16_581_375, which fits comfortably in a u32.

Trait Implementations§

Source§

impl Clone for Shape

Source§

fn clone(&self) -> Shape

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Shape

Source§

impl Debug for Shape

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Eq for Shape

Source§

impl Hash for Shape

Source§

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

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl PartialEq for Shape

Source§

fn eq(&self, other: &Shape) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Shape

Auto Trait Implementations§

§

impl Freeze for Shape

§

impl RefUnwindSafe for Shape

§

impl Send for Shape

§

impl Sync for Shape

§

impl Unpin for Shape

§

impl UnsafeUnpin for Shape

§

impl UnwindSafe for Shape

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.