devela 0.27.0

A development layer of coherence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// devela::data::store::key::_reexport_alloc

use crate::{_reexport, _tags};

/* from `alloc` */

_reexport! { rust: alloc::collections, location: "data/id", tag: _tags!(data_structure),
    doc: "An ordered map based on a B-Tree.",
    BTreeMap
}
_reexport! { rust: alloc::collections::btree_map, location: "data/id",
    doc: "An entry of an ordered map based on a B-Tree.",
    @Entry as BTreeMapEntry
}
_reexport! { rust: alloc::collections, location: "data/id", tag: _tags!(data_structure),
    doc: "An ordered set based on a B-Tree.",
    BTreeSet
}