File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
branches/try/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 2
2
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5
- refs/heads/try: d79fbba0db84b2d27440f8feba715dffd3aeaa01
5
+ refs/heads/try: edc7ad162cc8228d3d0104c1d0be92f9c43eabb2
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
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