froql 0.1.0

an in memory query dsl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(clippy::needless_return)]
#![allow(clippy::new_without_default)]

pub mod archetype;
pub mod bookkeeping;
pub mod component;
mod debug;
pub mod entity_store;
mod layout_vec;
pub mod query_helper;
pub mod relation;
pub mod relation_vec;
mod util;
pub mod world;
pub use froql_macro::query;
pub mod entity_view_deferred;
pub mod entity_view_mut;