nil_util/lib.rs
1// Copyright (C) Call of Nil contributors
2// SPDX-License-Identifier: AGPL-3.0-only
3
4#![cfg_attr(docsrs, feature(doc_cfg))]
5#![doc(html_favicon_url = "https://nil.dev.br/favicon.png")]
6#![feature(exit_status_error, try_trait_v2)]
7
8#[cfg(feature = "iter")]
9pub mod iter;
10
11#[cfg(feature = "ops")]
12pub mod ops;
13
14#[cfg(feature = "process")]
15pub mod process;
16
17#[cfg(feature = "vec")]
18pub mod vec;
19
20#[cfg(feature = "macros")]
21pub use nil_util_macros::{BigInt, ConstDeref, F64Math};