File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- //! This crate implements a double-ended queue with `O(1)` amortized inserts and removals from both
12
- //! ends of the container. It also has `O(1)` indexing like a vector. The contained elements are
13
- //! not required to be copyable, and the queue will be sendable if the contained type is sendable.
11
+ //! RingBuf is a double-ended queue, which is implemented with the help of a growing circular buffer.
12
+ //!
13
+ //! This queue has `O(1)` amortized inserts and removals from both ends of the container. It also
14
+ //! has `O(1)` indexing like a vector. The contained elements are not required to be copyable, and
15
+ //! the queue will be sendable if the contained type is sendable.
14
16
15
17
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
16
18
You can’t perform that action at this time.
0 commit comments