Supplier<JsBigDec> |
JsBigDecGen.apply(Random seed) |
Returns a supplier from the specified seed that generates a new JsBigDec each time it's called
|
static fun.gen.Gen<JsBigDec> |
JsBigDecGen.arbitrary() |
Returns a generator that produces values uniformly distributed
|
static fun.gen.Gen<JsBigDec> |
JsBigDecGen.arbitrary(BigDecimal min,
BigDecimal max) |
Returns a generator that produces values uniformly distributed over a specified interval
|
static fun.gen.Gen<JsBigDec> |
JsBigDecGen.biased() |
returns a biased generators that produces, with higher probability, potential problematic values
that usually cause more bugs.
|
static fun.gen.Gen<JsBigDec> |
JsBigDecGen.biased(long min,
long max) |
returns a biased generators that produces, with higher probability, potential problematic values
that usually cause more bugs.
|
static fun.gen.Gen<JsBigDec> |
JsBigDecGen.biased(BigDecimal min,
BigDecimal max) |
returns a biased generators that produces, with higher probability, potential problematic values
that usually cause more bugs.
|