devela/data/collections/array/d2/methods/general.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
// devela::data::collections::array::d2::methods::general
//
//! 2-dimensional array general methods.
//
#[cfg(doc)]
use crate::BareBox;
use crate::{
Array, Array2d, Bare, Mismatch,
MismatchedBounds::{self, IndexOutOfBounds, MismatchedCapacity},
Storage,
};
#[cfg(feature = "alloc")]
use crate::{Box, Boxed, Vec};
/* constructors */
// T: Clone, S: Bare
impl<T: Clone, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Bare>
{
/// Returns a 2-dimensional grid, allocated in the stack,
/// using `element` to fill the remaining free data.
/// # Errors
/// Returns [`IndexOutOfBounds`] if `C * R > usize::MAX`
/// or [`MismatchedCapacity`] if `C * R != CR`.
/// # Examples
/// ```
/// # use devela::Array2d;
/// let g = Array2d::<_, 4, 4, {4 * 4}>::with_cloned('.');
/// ```
pub fn with_cloned(element: T) -> Result<Self, MismatchedBounds> {
Self::check_CR()?;
Ok(Self { data: Array::<T, CR, Bare>::with_cloned(element) })
}
}
// T: Copy, S: Bare
impl<T: Copy, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Bare>
{
/// Returns a 2-dimensional grid, allocated in the stack,
/// using `element` to fill the remaining free data.
/// # Errors
/// Returns [`IndexOutOfBounds`] if `C * R > usize::MAX`
/// or [`MismatchedCapacity`] if `C * R != CR`.
/// # Examples
/// ```
/// # use devela::{Array2d, MismatchedBounds};
/// const GRID: Result<Array2d::<char, 4, 4, {4 * 4}>, MismatchedBounds>
/// = Array2d::with_copied('.');
/// assert![GRID.is_ok()];
/// ```
pub const fn with_copied(element: T) -> Result<Self, MismatchedBounds> {
match Self::check_CR() {
Ok(()) => Ok(Self { data: Array::<T, CR, Bare>::with_copied(element) }),
Err(e) => Err(e),
}
}
}
// T: Clone, S: Boxed
#[cfg(feature = "alloc")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
impl<T: Clone, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Boxed>
{
/// Returns a 2-dimensional grid, allocated in the heap,
/// using `element` to fill the remaining free data.
/// # Errors
/// Returns [`IndexOutOfBounds`] if `C * R > usize::MAX`
/// or [`MismatchedCapacity`] if `C * R != CR`.
/// # Examples
/// ```
/// # use devela::{Boxed, Array2d};
/// let g = Array2d::<_, 4, 4, {4 * 4}, true, Boxed>::with_cloned(String::from("ยท"));
/// ```
pub fn with_cloned(element: T) -> Result<Self, MismatchedBounds> {
Self::check_CR()?;
Ok(Self { data: Array::<T, CR, Boxed>::with_cloned(element) })
}
}
// Order-independent
// T, S
#[rustfmt::skip]
impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool, S: Storage>
Array2d<T, C, R, CR, RMAJ, S>
{
/* general queries */
/// Returns the total capacity of the array, equals `CR == C * R`.
#[must_use] pub const fn capacity(&self) -> usize { CR }
/// Returns the capacity of a column, equivalent to [`num_rows`][Self::num_rows] == `R`.
#[must_use] pub const fn cap_col(&self) -> usize { R }
/// Returns the capacity of a row, equivalent to [`num_cols`][Self::num_cols] == `C`.
#[must_use] pub const fn cap_row(&self) -> usize { C }
/// Returns the number of columns, equivalent to [`cap_row`][Self::cap_row] == `C`.
#[must_use] pub const fn num_cols(&self) -> usize { C }
/// Returns the number of rows, equivalent to [`cap_col`][Self::cap_col] == `R`.
#[must_use] pub const fn num_rows(&self) -> usize { R }
/// Checks the geometry of the columns, rows and their product length.
/// # Errors
/// Returns [`IndexOutOfBounds`] if `C * R > usize::MAX`
/// or [`MismatchedCapacity`] if `C * R != CR`.
#[allow(non_snake_case)]
pub(crate) const fn check_CR() -> Result<(), MismatchedBounds> {
if let Some(len) = C.checked_mul(R) {
if len == CR { Ok(()) } else {
Err(MismatchedCapacity(Mismatch::in_closed_interval(CR, CR, len, "C * R != CR")))
}
} else { Err(IndexOutOfBounds(None)) } // RETHINK: return some value
}
/// Checks the geometry of the columns, rows and their product length.
/// # Panics
/// Panics if `C * R > usize::MAX` or if `C * R != CR`.
#[allow(non_snake_case)]
pub(crate) const fn panic_check_CR() {
if let Some(len) = C.checked_mul(R) {
if len != CR {
panic![concat![ "Array2d Mismatch: C * R != CR: ",
stringify!(C), " * ", stringify!(R), " != ", stringify!(CR) ]];
}
} else {
panic![concat![ "Array2d overflow: C * R (",
stringify!(R), " * ", stringify!(C), " > usize::MAX)" ]];
}
}
/* slices */
/// Returns a slice containing the full grid.
// /// # Examples
// /// ```
// /// # use devela::Array2d;
// /// let g = Array2d::from([1, 2, 3]);
// /// assert_eq![s.as_slice(), &[1, 2, 3]];
// /// ```
#[must_use]
pub fn as_slice(&self) -> &[T] { self.data.as_slice() }
/// Returns the stack as an exclusive slice.
// /// # Examples
// /// ```
// /// # use devela::Array2d;
// /// let mut g = Array2d::<_, (), 2, 2, 4>::from([1, 2, 3]);
// /// assert_eq![s.as_mut_slice(), &mut [1, 2, 3]];
// /// ```
#[must_use]
pub fn as_mut_slice(&mut self) -> &mut [T] { self.data.as_mut_slice() }
}
/* Order-dependent */
#[rustfmt::skip]
impl<T, const C: usize, const R: usize, const CR: usize, S: Storage> Array2d<T, C, R, CR, true, S> {
/// Returns the capacity per item in the major dimension based on layout (`RMAJ`).
/// For row-major, this is the number of columns. For column-major, this is the number of rows.
#[must_use] pub const fn cap_major(&self) -> usize { C }
/// Returns the capacity per item in the minor dimension based on layout (`RMAJ`).
/// For row-major, this is the number of rows. For column-major, this is the number of columns.
#[must_use] pub const fn cap_minor(&self) -> usize { R }
/// Returns the number of items in the major dimension based on layout (`RMAJ`).
/// For row-major, this is the number of rows. For column-major, this is the number of columns.
#[must_use] pub const fn num_major(&self) -> usize { R }
/// Returns the number of items in the minor dimension based on layout (`RMAJ`).
/// For row-major, this is the number of columns. For column-major, this is the number of rows.
#[must_use] pub const fn num_minor(&self) -> usize { C }
}
#[rustfmt::skip]
impl<T, const C: usize, const R: usize, const CR: usize, S: Storage> Array2d<T, C, R, CR, false, S> {
/// Returns the capacity per item in the major dimension based on layout (`RMAJ`).
/// For row-major, this is the number of columns. For column-major, this is the number of rows.
#[must_use] pub const fn cap_major(&self) -> usize { R }
/// Returns the capacity per item in the minor dimension based on layout (`RMAJ`).
/// For row-major, this is the number of rows. For column-major, this is the number of columns.
#[must_use] pub const fn cap_minor(&self) -> usize { C }
/// Returns the number of items in the major dimension based on layout (`RMAJ`).
/// For row-major, this is the number of rows. For column-major, this is the number of columns.
#[must_use] pub const fn num_major(&self) -> usize { C }
/// Returns the number of items in the minor dimension based on layout (`RMAJ`).
/// For row-major, this is the number of columns. For column-major, this is the number of rows.
#[must_use] pub const fn num_minor(&self) -> usize { R }
}
// T, S: Bare
#[rustfmt::skip]
impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Bare>
{
/// Returns the inner [`BareBox`]ed primitive array.
#[must_use]
pub fn into_array(self) -> [T; CR] { self.data.into_array() }
}
// T: Copy, S: Bare
#[rustfmt::skip]
impl<T: Copy, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Bare>
{
/// Returns the inner [`BareBox`]ed primitive array in compile-time.
#[must_use]
pub const fn into_array_copy(self) -> [T; CR] { self.data.into_array_copy() }
}
// T, S: Boxed
#[rustfmt::skip]
#[cfg(feature = "alloc")]
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "alloc")))]
impl<T, const C: usize, const R: usize, const CR: usize, const RMAJ: bool>
Array2d<T, C, R, CR, RMAJ, Boxed>
{
/// Returns the inner [`Box`]ed primitive array.
#[must_use]
pub fn into_array(self) -> Box<[T; CR]> { self.data.into_array() }
/// Returns the inner [`Box`]ed primitive array as a slice.
#[must_use]
pub fn into_slice(self) -> Box<[T]> { self.data.into_slice() }
/// Returns the inner [`Box`]ed primitive array as a `Vec`.
#[must_use]
pub fn into_vec(self) -> Vec<T> { self.data.into_vec() }
}
// T: Clone, S
#[rustfmt::skip]
impl<T: Clone, const C: usize, const R: usize, const CR: usize, const RMAJ: bool, S: Storage>
Array2d<T, C, R, CR, RMAJ, S>
{
/// Fills all elements of the grid with the given `element`.
pub fn fill(&mut self, element: T) { self.data.fill(element) }
}
// T: PartialEq, S
impl<
T: PartialEq,
const C: usize,
const R: usize,
const CR: usize,
const RMAJ: bool,
S: Storage,
> Array2d<T, C, R, CR, RMAJ, S>
{
/// Returns true if the array contains `element`.
/// # Examples
// /// ```
// /// # use devela::Array2d;
// /// let a = Array2d::<_, 5, 5, 25>::new([5, 78, 42, 33, 9]);
// /// assert![a.contains(&9)];
// /// assert![!a.contains(&8)];
// /// ```
#[must_use]
pub fn contains(&self, element: &T) -> bool {
self.data.iter().any(|n| n == element)
}
}