Skip to main content

scirs2_core/random/
seq.rs

1//! Sequence random operations for SCIRS2 ecosystem
2//!
3//! This module provides sequence-based random operations that are fully compatible
4//! with the rand::seq module while maintaining SCIRS2 POLICY compliance.
5
6// Re-export the core SliceRandom trait for direct compatibility
7pub use rand::seq::SliceRandom;
8
9// Re-export other sequence operations from rand::seq
10pub use rand::seq::index;
11
12// Re-export our enhanced slice operations
13pub use crate::random::slice_ops::{ScientificSliceRandom, SliceRandomExt};