1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Copyright 2023, Colias Group, LLC
//
// SPDX-License-Identifier: BSD-2-Clause
//

pub use volatile::ops::*;

mod bytewise_ops;
mod normal_ops;
mod unordered_atomic_ops;
mod zerocopy_ops;

pub use bytewise_ops::BytewiseOps;
pub use normal_ops::NormalOps;
pub use unordered_atomic_ops::UnorderedAtomicOps;
pub use zerocopy_ops::ZerocopyOps;