summaryrefslogtreecommitdiffstats
path: root/vendor/packed_simd_2/src/api/ops.rs
blob: f71c98795da3ea5cd4df2cef07054fbad730e1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! Implementation of the `ops` traits
#[macro_use]
mod vector_mask_bitwise;
#[macro_use]
mod scalar_mask_bitwise;

#[macro_use]
mod vector_arithmetic;
#[macro_use]
mod scalar_arithmetic;

#[macro_use]
mod vector_bitwise;
#[macro_use]
mod scalar_bitwise;

#[macro_use]
mod vector_shifts;
#[macro_use]
mod scalar_shifts;

#[macro_use]
mod vector_rotates;

#[macro_use]
mod vector_neg;

#[macro_use]
mod vector_int_min_max;

#[macro_use]
mod vector_float_min_max;