File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
branches/snap-stage3/src/libcollections Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: b8ef9fd9c9f642ce7b8aed82782a1ed745d08d64
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: d79fbba0db84b2d27440f8feba715dffd3aeaa01
4
+ refs/heads/snap-stage3: edc7ad162cc8228d3d0104c1d0be92f9c43eabb2
5
5
refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
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
- //! Container traits for extra
11
+ //! Container traits for collections
12
12
13
13
use std:: container:: Mutable ;
14
14
Original file line number Diff line number Diff line change 13
13
//! The DList allows pushing and popping elements at either end.
14
14
//!
15
15
//! DList implements the trait Deque. It should be imported with `use
16
- //! extra::container ::Deque`.
16
+ //! collections::deque ::Deque`.
17
17
18
18
19
19
// DList is constructed like a singly-linked list over the field `next`.
Original file line number Diff line number Diff line change 11
11
//! A double-ended queue implemented as a circular buffer
12
12
//!
13
13
//! RingBuf implements the trait Deque. It should be imported with `use
14
- //! extra::container ::Deque`.
14
+ //! collections::deque ::Deque`.
15
15
16
16
use std:: cmp;
17
17
use std:: slice;
You can’t perform that action at this time.
0 commit comments