Struct proptest::num::i16::BinarySearch [] [src]

pub struct BinarySearch { /* fields omitted */ }

Shrinks an integer towards 0, using binary search to find boundary points.

Methods

impl BinarySearch
[src]

Creates a new binary searcher starting at the given value.

Trait Implementations

impl Clone for BinarySearch
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for BinarySearch
[src]

impl Debug for BinarySearch
[src]

Formats the value using the given formatter.

impl ValueTree for BinarySearch
[src]

The type of the value produced by this ValueTree.

Returns the current value.

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

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