deep_causality_rand/traits/
fill.rs

1/*
2 * SPDX-License-Identifier: MIT
3 * Copyright (c) "2025" . The DeepCausality Authors and Contributors. All Rights Reserved.
4 */
5
6use crate::Rng;
7
8pub trait Fill {
9    fn fill<R: Rng + ?Sized>(&mut self, rng: &mut R);
10}