1 2 3 4 5 6 7 8
//! Core bit‐storage primitives: Move10 and MovePlanes. //! These types know only about 10-bit moves and how to pack/unpack them into 128-bit planes. pub mod move10; pub mod move_planes; pub use move10::Move10; pub use move_planes::MovePlanes;