choose
function
clojure.test.check.generators/choose
(choose [lower upper])Creates a generator that generates integers uniformly in the range
`lower` to `upper`, inclusive.
(gen/sample (gen/choose 200 800))
=> (331 241 593 339 643 718 688 473 247 694)
Examples
No examples yet. Be the first to add one!