rand_isaac/
lib.rs

1// Copyright 2018-2023 Developers of the Rand project.
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9//! The ISAAC and ISAAC-64 random number generators.
10//!
11//! To initialize a generator, use the [`SeedableRng`][rand_core::SeedableRng] trait.
12
13#![doc(
14    html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
15    html_favicon_url = "https://www.rust-lang.org/favicon.ico",
16    html_root_url = "https://docs.rs/rand_isaac/0.4.0"
17)]
18#![deny(missing_docs)]
19#![deny(missing_debug_implementations)]
20#![doc(test(attr(allow(unused_variables), deny(warnings))))]
21#![allow(
22    clippy::too_many_arguments,
23    clippy::many_single_char_names,
24    clippy::identity_op
25)]
26#![cfg_attr(not(all(feature = "serde", test)), no_std)]
27
28pub mod isaac;
29pub mod isaac64;
30
31mod isaac_array;
32
33pub use self::isaac::IsaacRng;
34pub use self::isaac64::Isaac64Rng;