Expand description
Strategies for generating values by taking samples of collections.
Note that the strategies in this module are not native combinators; that is, the input collection is not itself a strategy, but is rather fixed when the strategy is created.
Re-exports§
pub use crate::collection::size_range;
pub use crate::collection::SizeRange;
Structs§
- Index
- A stand-in for an index into a slice or similar collection or conceptually similar things.
- Index
Strategy - Strategy to create
Index
es. - Index
Value Tree ValueTree
corresponding toIndexStrategy
.- Select
- Strategy to produce one value from a fixed collection of options.
- Select
Value Tree ValueTree
corresponding toSelect
.- Selector
- A value for picking random values out of iterators.
- Selector
Strategy - Strategy to create
Selector
s. - Selector
Value Tree ValueTree
corresponding toSelectorStrategy
.- Subsequence
- Strategy to generate
Vec
s by sampling a subsequence from another collection. - Subsequence
Value Tree ValueTree
type forSubsequence
.
Functions§
- select
- Create a strategy which uniformly selects one value from
values
. - subsequence
- Sample subsequences whose size are within
size
from the given collectionvalues
.