hexga_generational 0.0.7

GenVec, ideal for MAS (Multi-Agent System), where each agent can be removed at any time and has references to other agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provide GenVec
//! 
//! A crate mainly inspired by RustConf 2018 - Closing Keynote - Using Rust For Game Development by Catherine West : https://youtu.be/aKLntZcp27M
//! and the SlotMap data structure https://docs.rs/slotmap/latest/slotmap/

pub(crate) use hexga_number::*;

#[allow(unused_imports)]
#[cfg(feature = "serde")]
pub(crate) use serde::{Serialize, Serializer, Deserialize, Deserializer, de::Visitor, ser::SerializeStruct};

pub mod gen_vec;
pub mod prelude;