aptos_infallible_link/lib.rs
1// Copyright (c) Aptos
2// SPDX-License-Identifier: Apache-2.0
3
4mod math;
5mod mutex;
6mod nonzero;
7mod rwlock;
8mod time;
9
10pub use math::ArithmeticError;
11pub use mutex::{Mutex, MutexGuard};
12pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};
13pub use time::{duration_since_epoch, duration_since_epoch_at};