operon 0.7.0

A workflow engine for parallel, incremental scheduling of DAG-defined multiplex tasks.
Documentation
1
2
3
4
5
6
7
#[derive(Debug)]
pub struct Entity<const N: usize, T> {
    /// The coordinate to find this entity.
    pub coordinate: [usize; N],
    /// The value of this entity.
    pub value: T,
}