nyandere 0.1.2

i help with keeping track of purchases. meow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Mathematics-adjacent concepts.

use num_bigint::{BigInt, BigUint};

/// 0, 1, 2, 3, ...
///
/// Called ℕ₀, the set of natural numbers including 0, in maths.
/// Starts at 0, extends towards ∞.
pub type Natural = BigUint;

/// ..., -2, -1, 0, 1, 2, ...
///
/// Called ℤ, the set of integers, in maths.
/// Extends from -∞ to +∞; has no finite start or end.
pub type Integer = BigInt;