File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 88
99#![ stable( feature = "rust1" , since = "1.0.0" ) ]
1010
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-
2311use crate :: cmp:: Ordering :: { self , Equal , Greater , Less } ;
2412use crate :: intrinsics:: assume;
2513use crate :: marker:: { self , Copy } ;
@@ -87,10 +75,6 @@ pub use index::SliceIndex;
8775use index:: { slice_end_index_len_fail, slice_index_order_fail} ;
8876use index:: { slice_end_index_overflow_fail, slice_start_index_overflow_fail} ;
8977
90- //
91- // Extension traits
92- //
93-
9478#[ lang = "slice" ]
9579#[ cfg( not( test) ) ]
9680impl < T > [ T ] {
You can’t perform that action at this time.
0 commit comments