loeres-backend-std 0.9.0

Loeres dynamic dense/sparse storage and server numerical adapters. std, heap-backed; server-only.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! `loeres-backend-std` — dynamic, heap-backed storage for the server.
//!
//! Environment: `std`, dynamic allocation. Provides dense/sparse storage
//! adapters and optional third-party numerical backends, all implementing the
//! `loeres` access contracts. Server-only: it must never be depended on
//! by `loeres-device` or `loeres-backend-static`.
//!
//! Public module topography (external design §1.5):
//! `dense`, `sparse`, `view`, `batch`, `adapter`.
//!
//! Phase 0 skeleton: modules are documented placeholders.

pub mod adapter;
pub mod batch;
pub mod dense;
pub mod sparse;
pub mod view;