File tree 1 file changed +0
-16
lines changed
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 8
8
9
9
#![ stable( feature = "rust1" , since = "1.0.0" ) ]
10
10
11
- // How this module is organized.
12
- //
13
- // The library infrastructure for slices is fairly messy. There's
14
- // a lot of stuff defined here. Let's keep it clean.
15
- //
16
- // The layout of this file is thus:
17
- //
18
- // * Inherent methods. This is where most of the slice API resides.
19
- // * Implementations of a few common traits with important slice ops.
20
- // * The `raw` and `bytes` submodules.
21
- // * Boilerplate trait implementations.
22
-
23
11
use crate :: cmp:: Ordering :: { self , Equal , Greater , Less } ;
24
12
use crate :: intrinsics:: assume;
25
13
use crate :: marker:: { self , Copy } ;
@@ -87,10 +75,6 @@ pub use index::SliceIndex;
87
75
use index:: { slice_end_index_len_fail, slice_index_order_fail} ;
88
76
use index:: { slice_end_index_overflow_fail, slice_start_index_overflow_fail} ;
89
77
90
- //
91
- // Extension traits
92
- //
93
-
94
78
#[ lang = "slice" ]
95
79
#[ cfg( not( test) ) ]
96
80
impl < T > [ T ] {
You can’t perform that action at this time.
0 commit comments