Abstract
Abstract
canCheck if a given value could be pass to shrink
without providing any context.
In general, canShrinkWithoutContext
is not designed to be called for each shrink
but rather on very special cases.
Its usage must be restricted to canShrinkWithoutContext
or in the rare* contexts of a shrink
method being called without
any context. In this ill-formed case of shrink
, canShrinkWithoutContext
could be used or called if needed.
*we fall in that case when fast-check is asked to shrink a value that has been provided manually by the user,
in other words: a value not coming from a call to generate
or a normal shrink
with context.
Value to be assessed
true
if and only if the value could have been generated by this instance
Create another arbitrary by mapping a value from a base Arbirary using the provided fmapper
Values produced by the new arbitrary are the result of the arbitrary generated by applying fmapper
to a value
New arbitrary of new type
Create another arbitrary by filtering values against predicate
All the values produced by the resulting arbitrary
satisfy predicate(value) == true
Be aware that using filter may highly impact the time required to generate a valid entry
New arbitrary filtered using predicate
Create another arbitrary by filtering values against predicate
All the values produced by the resulting arbitrary
satisfy predicate(value) == true
Be aware that using filter may highly impact the time required to generate a valid entry
New arbitrary filtered using predicate
Abstract
generateGenerate a value of type T
along with its context (if any)
based on the provided random number generator
Random number generator
If taken into account 1 value over biasFactor must be biased. Either integer value greater or equal to 2 (bias) or undefined (no bias)
Random value of type T
and its context
Create another arbitrary by mapping all produced values using the provided mapper
Values produced by the new arbitrary are the result of applying mapper
value by value
New arbitrary with mapped elements
Abstract
shrinkShrink a value of type T
, may rely on the context previously provided to shrink efficiently
Must never be called with possibly invalid values and no context without ensuring that such call is legal
by calling canShrinkWithoutContext
first on the value.
The value to shrink
Its associated context (the one returned by generate) or undefined
if no context but canShrinkWithoutContext(value) === true
Stream of shrinks for value based on context (if provided)
Abstract class able to generate values on type
T
The values generated by an instance of Arbitrary can be previewed - with sample - or classified - with statistics.
Remarks
Since 0.0.7