Internal value of the shrinkable
Context associated to the generated value (useful for shrink)
Limited to internal usages (to ease migration to next), it will be removed on next major
Readonly
contextContext for the generated value TODO - Do we want to clone it too?
2.15.0
Readonly
hasState storing the result of hasCloneMethod
If true
the value will be cloned each time it gets accessed
Since 2.15.0
Private
readFlag indicating whether or not the this.value has already been called once If so, the underlying will be cloned Only set when hasToBeCloned = true
Readonly
valueSafe value of the shrinkable
Depending on hasToBeCloned
it will either be value_
or a clone of it
Since 2.15.0
Readonly
value_Internal value of the shrinkable
Since 2.15.0
Private
getGenerated using TypeDoc
A
Value<T, TShrink = T>
holds an internal value of typeT
and its associated contextRemarks
Since 3.0.0 (previously called
NextValue
in 2.15.0)