File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 16
16
17
17
#[ path = "mod.rs" ]
18
18
mod core_simd;
19
- pub use self :: core_simd:: simd:: * ;
19
+ use self :: core_simd:: simd;
20
+ pub use simd:: * ;
Original file line number Diff line number Diff line change @@ -3,31 +3,29 @@ mod permute;
3
3
#[ macro_use]
4
4
mod reduction;
5
5
6
- mod select ;
6
+ pub ( crate ) mod intrinsics ;
7
7
8
8
#[ cfg( feature = "generic_const_exprs" ) ]
9
9
mod to_bytes;
10
10
11
11
mod comparisons;
12
12
mod fmt;
13
- mod intrinsics;
14
13
mod iter;
14
+ mod lane_count;
15
+ mod masks;
15
16
mod math;
16
17
mod ops;
17
18
mod round;
18
- mod vendor;
19
-
20
- mod lane_count;
21
-
22
- mod masks;
23
-
19
+ mod select;
24
20
mod vector;
21
+ mod vendor;
25
22
26
23
#[ doc = include_str ! ( "core_simd_docs.md" ) ]
27
24
pub mod simd {
28
- pub use crate :: core_simd:: lane_count:: * ;
25
+ pub ( crate ) use crate :: core_simd:: intrinsics;
26
+
27
+ pub use crate :: core_simd:: lane_count:: { LaneCount , SupportedLaneCount } ;
29
28
pub use crate :: core_simd:: masks:: * ;
30
29
pub use crate :: core_simd:: select:: Select ;
31
30
pub use crate :: core_simd:: vector:: * ;
32
- pub ( crate ) use crate :: core_simd:: * ;
33
31
}
You can’t perform that action at this time.
0 commit comments