We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ebcb40 commit 5c324e2Copy full SHA for 5c324e2
src/gens/bool.rs
@@ -9,13 +9,6 @@ pub fn with_ratio(ratio_false: u8, ratio_true: u8) -> BoxGen<bool> {
9
.with_shrinker(crate::shrinks::bool())
10
}
11
12
-/// Uniformly distributed generator of `true` and `false`. Please use [any]
13
-/// instead.
14
-#[deprecated = "Use any() insted, conforming to monkey_test general naming scheme."]
15
-pub fn evenly() -> BoxGen<bool> {
16
- with_ratio(1, 1)
17
-}
18
-
19
/// Uniformly distributed generator of `true` and `false`.
20
pub fn any() -> BoxGen<bool> {
21
with_ratio(1, 1)
0 commit comments