Skip to main content

large-integer*

function

clojure.test.check.generators/large-integer*

(large-integer* [{:keys [min max]}])
Like large-integer, but accepts options: :min the minimum integer (inclusive) :max the maximum integer (inclusive) Both :min and :max are optional. (gen/sample (gen/large-integer* {:min 9000 :max 10000})) => (9000 9001 9001 9002 9000 9003 9006 9030 9005 9044)

No examples yet. Be the first to add one!