//! Concrete message-buffer specialisations.
//!
//! Each sub-module implements one storage and indexing strategy:
//!
//! | Module | Buffer type | Query | Best for |
//! |---|---|---|---|
//! | [`brute_force`] | flat [`AlignedBuffer`] | iterate all | broadcast / global events |
//! | [`bucket`] | counting-sorted by key | one bucket | integer-keyed categories |
//! | [`spatial`] | counting-sorted by cell | radius circle | positional queries |
//! | [`targeted`] | sorted by full [`Entity`] | per-entity inbox | point-to-point messages |
pub
pub
pub
pub
pub use BruteForceIter;
pub use BucketIter;
pub use SpatialQueryIter;
pub use InboxIter;