krabmaga 0.6.0

A modern developing art for reliable and efficient Agent-based Model (ABM) simulation with the Rust language.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Enum to select how to apply closure to grid
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub enum GridOption {
    /// Apply closure from Read state
    READ,
    /// Apply closure from Write state
    WRITE,
    /// Apply closure reading from Read and writing into Write state
    READWRITE,
}