composable-indexes 0.9.0

In-memory collections with composable indexes
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::index;

/// An alias to KeysIndex with an immutable backing store.
pub type Keys = index::Keys<index::generic::DefaultImmutableKeySet>;

impl Keys {
    pub fn new_immutable() -> Self {
        Self::default()
    }
}