`Nat` from a u64 via the public `From ` impl. (The `Nat` type itself is a private re-export in `env.rs`.)
(x: u64)
| 379 | /// `Nat` from a u64 via the public `From<u64>` impl. |
| 380 | /// (The `Nat` type itself is a private re-export in `env.rs`.) |
| 381 | fn n(x: u64) -> bignat::Nat { |
| 382 | bignat::Nat::from(x) |
| 383 | } |
| 384 | |
| 385 | // ---- test helpers ---- |
| 386 |
no outgoing calls