1mod dvec2_impl;
2mod dvec3_impl;
3mod dvec4_impl;
4
5mod ivec2_impl;
6mod ivec3_impl;
7mod ivec4_impl;
8
9mod i16vec2_impl;
10mod i16vec3_impl;
11mod i16vec4_impl;
12
13mod u16vec2_impl;
14mod u16vec3_impl;
15mod u16vec4_impl;
16
17mod i64vec2_impl;
18mod i64vec3_impl;
19mod i64vec4_impl;
20
21mod u64vec2_impl;
22mod u64vec3_impl;
23mod u64vec4_impl;
24
25mod uvec2_impl;
26mod uvec3_impl;
27mod uvec4_impl;
28
29mod vec2_impl;
30mod vec3_impl;
31
32#[cfg(any(
33 not(any(
34 feature = "core-simd",
35 target_feature = "sse2",
36 target_feature = "simd128"
37 )),
38 feature = "scalar-math"
39))]
40mod scalar;
41
42#[cfg(all(
43 target_feature = "sse2",
44 not(any(feature = "core-simd", feature = "scalar-math"))
45))]
46mod sse2;
47
48#[cfg(all(
49 target_feature = "simd128",
50 not(any(feature = "core-simd", feature = "scalar-math"))
51))]
52mod wasm32;
53
54#[cfg(all(feature = "core-simd", not(feature = "scalar-math")))]
55mod coresimd;
56
57mod vec_traits;
58pub use vec_traits::*;