File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
22
22
23
23
- Fixed clippy lints.
24
24
- Fixed ` {arc,box,object}_pool! ` emitting clippy lints for ` CamelCase ` and ` SNAKE_CASE ` .
25
+ - Fixed the list of implemented data structures in the crate docs, by adding ` Deque ` ,
26
+ ` HistoryBuffer ` and ` SortedLinkedList ` to the list.
25
27
26
28
## [ v0.8.0] - 2023-11-07
27
29
Original file line number Diff line number Diff line change 51
51
doc = "- [`Box`](pool::boxed::Box) -- like `std::boxed::Box` but backed by a lock-free memory pool rather than `#[global_allocator]`"
52
52
) ]
53
53
//! - [`BinaryHeap`] -- priority queue
54
+ //! - [`Deque`] -- double-ended queue
55
+ //! - [`HistoryBuffer`] -- similar to a write-only ring buffer
54
56
//! - [`IndexMap`] -- hash table
55
57
//! - [`IndexSet`] -- hash set
56
58
//! - [`LinearMap`]
57
59
# -- objects managed by an object pool"
60
62
) ]
63
+ //! - [`sorted_linked_list::SortedLinkedList`]
61
64
//! - [`String`]
62
65
//! - [`Vec`]
63
66
//! - [`mpmc::Q*`](mpmc) -- multiple producer multiple consumer lock-free queue
You can’t perform that action at this time.
0 commit comments