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 1616
1717#[ path = "mod.rs" ]
1818mod 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;
33#[ macro_use]
44mod reduction;
55
6- mod select ;
6+ pub ( crate ) mod intrinsics ;
77
88#[ cfg( feature = "generic_const_exprs" ) ]
99mod to_bytes;
1010
1111mod comparisons;
1212mod fmt;
13- mod intrinsics;
1413mod iter;
14+ mod lane_count;
15+ mod masks;
1516mod math;
1617mod ops;
1718mod round;
18- mod vendor;
19-
20- mod lane_count;
21-
22- mod masks;
23-
19+ mod select;
2420mod vector;
21+ mod vendor;
2522
2623#[ doc = include_str ! ( "core_simd_docs.md" ) ]
2724pub 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 } ;
2928 pub use crate :: core_simd:: masks:: * ;
3029 pub use crate :: core_simd:: select:: Select ;
3130 pub use crate :: core_simd:: vector:: * ;
32- pub ( crate ) use crate :: core_simd:: * ;
3331}
You can’t perform that action at this time.
0 commit comments