hexga_math 0.0.11-beta.53

Math related crate that define number and casting, and support array programming...
Documentation
use super::*;

#[cfg(feature = "serde")]
mod serde_impl;
#[cfg(feature = "serde")]
pub use serde_impl::*;

mod typedef;
pub use typedef::*;

mod grid;
pub use grid::*;

mod igrid;
pub use igrid::*;

mod view;
pub use view::*;

mod iter;
pub use iter::*;

mod view_mut;
pub use view_mut::*;

mod iter_mut;
pub use iter_mut::*;

pub mod prelude
{
    pub use super::{
        igrid::{GridBaseError, IGrid, ToGrid},
        typedef::*,
    };
}