scattered-collect 0.22.1

Link-time collections for Rust (distributed slices, registries)
Documentation
1
2
3
4
5
6
7
8
9
10
use scattered_collect::{declarative::scatter, gather, map::ScatteredMap};

#[gather]
static MAP: ScatteredMap<&'static str, u32>;

scatter! {
    static BAD: (&'static str, u32) = ("a", 1);
}

fn main() {}