undoredo 0.8.23

Delta-based undo-redo decorator for collections such as HashMap, BTreeMap, StableVec, thunderdome::Arena, rstar::RTree. No need to implement commands.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2026 undoredo contributors
//
// SPDX-License-Identifier: MIT OR Apache-2.0

extern crate alloc;

#[path = "alloc/btreemap.rs"]
mod btreemap;

#[path = "alloc/btreeset.rs"]
mod btreeset;

#[path = "alloc/vec.rs"]
mod vec;