1
0
Fork 0
This commit is contained in:
Paul-Nicolas Madelaine 2025-11-29 14:12:20 +01:00
parent f97a594635
commit 1b3da8585e

View file

@ -5,8 +5,8 @@ use crate::bitboard::*;
macro_rules! container {
($v:vis, $a:ident, $b:ident, $n:literal) => {
#[doc = "Container with values for each [`"]
#[doc = stringify!($a)]
#[doc = "`]."]
#[doc = stringify!($a)]
#[doc = "`]."]
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
$v struct $b<T>(pub(crate) [T; $n]);
#[allow(unused)]