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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Tests for all operations (arithmetic, bitwise, primitives).
#[path = "ops/arithmetic/add.rs"]
mod add;
#[path = "ops/arithmetic/div.rs"]
mod div;
#[path = "ops/arithmetic/mixed_ops.rs"]
mod mixed_ops;
#[path = "ops/arithmetic/mul.rs"]
mod mul;
#[path = "ops/arithmetic/neg.rs"]
mod neg;
#[path = "ops/arithmetic/pow.rs"]
mod pow;
#[path = "ops/arithmetic/rem.rs"]
mod rem;
#[path = "ops/arithmetic/sub.rs"]
mod sub;
#[cfg(feature = "bitwise")]
#[path = "ops/bitwise/and.rs"]
mod and;
#[cfg(feature = "bitwise")]
#[path = "ops/bitwise/not.rs"]
mod not;
#[cfg(feature = "bitwise")]
#[path = "ops/bitwise/or.rs"]
mod or;
#[cfg(feature = "bitwise")]
#[path = "ops/bitwise/shift.rs"]
mod shift;
#[cfg(feature = "bitwise")]
#[path = "ops/bitwise/xor.rs"]
mod xor;
#[path = "ops/primitives.rs"]
mod primitives;
#[path = "ops/ref_ops.rs"]
mod ref_ops;