Skip to main content

nil_num/
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
7pub mod growth;
8pub mod ops;
9pub mod roman;
10
11pub use nil_num_macros::{BigIntU64, BigIntUsize};