Struct proptest::strategy::Fuse [] [src]

pub struct Fuse<T> { /* fields omitted */ }

Adaptor for Strategy and ValueTree which guards simplify() and complicate() to avoid contract violations.

This can be used as an intermediate when the caller would otherwise need its own separate state tracking, or as a workaround for a broken ValueTree implementation.

This wrapper specifically has the following effects:

  • Calling complicate() before simplify() was ever called does nothing and returns false.

  • Calling simplify() after it has returned false and no calls to complicate() returned true does nothing and returns false.

  • Calling complicate() after it has returned false and no calls to simplify() returned true does nothing and returns false.

There is also limited functionality to alter the internal state to assist in its usage as a state tracker.

Wrapping a Strategy in Fuse simply causes its ValueTree to also be wrapped in Fuse.

While this is similar to std::iter::Fuse, it is not exposed as a method on Strategy since the vast majority of proptest should never need this functionality; it mainly concerns implementors of strategies.

Methods

impl<T> Fuse<T>
[src]

[src]

Wrap the given T in Fuse.

impl<T: ValueTree> Fuse<T>
[src]

[src]

Return whether a call to simplify() may be productive.

Formally, this is true if one of the following holds:

  • simplify() has never been called.
  • The most recent call to simplify() returned true.
  • complicate() has been called more recently than simplify() and the last call returned true.

[src]

Disallow any further calls to simplify() until a call to complicate() returns true.

[src]

Return whether a call to complicate() may be productive.

Formally, this is true if one of the following holds:

  • The most recent call to complicate() returned true.
  • simplify() has been called more recently than complicate() and the last call returned true.

[src]

Disallow any further calls to complicate() until a call to simplify() returns true.

[src]

Prevent any further shrinking operations from occurring.

Trait Implementations

impl<T: Debug> Debug for Fuse<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone> Clone for Fuse<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for Fuse<T>
[src]

impl<T: Strategy> Strategy for Fuse<T>
[src]

The value tree generated by this Strategy. Read more

[src]

Generate a new value tree from the given runner. Read more

[src]

Returns a strategy which produces values transformed by the function fun. Read more

[src]

Returns a strategy which produces values transformed by the function fun, which is additionally given a random number generator. Read more

[src]

Maps values produced by this strategy into new strategies and picks values from those strategies. Read more

[src]

Maps values produced by this strategy into new strategies and picks values from those strategies while considering the new strategies to be independent. Read more

[src]

Similar to prop_ind_flat_map(), but produces 2-tuples with the input generated from self in slot 0 and the derived strategy in slot 1. Read more

[src]

Returns a strategy which only produces values accepted by fun. Read more

[src]

Returns a strategy which picks uniformly from self and other. Read more

[src]

Generate a recursive structure with self items as leaves. Read more

[src]

Shuffle the contents of the values produced by this strategy. Read more

[src]

Erases the type of this Strategy so it can be passed around as a simple trait object. Read more

[src]

Erases the type of this Strategy so it can be passed around as a simple trait object. Read more

[src]

Wraps this strategy to prevent values from being subject to shrinking. Read more

impl<T: ValueTree> ValueTree for Fuse<T>
[src]

The type of the value produced by this ValueTree.

[src]

Returns the current value.

[src]

Attempts to simplify the current value. Notionally, this sets the "high" value to the current value, and the current value to a "halfway point" between high and low, rounding towards low. Read more

[src]

Attempts to partially undo the last simplification. Notionally, this sets the "low" value to one plus the current value, and the current value to a "halfway point" between high and the new low, rounding towards low. Read more