Hi there,

I would like to create a generator generating a list of ints with each 
value repeated a number of times e.g.

(gen/sample gen-repeater [ 1 1 1 2 2 2 -1 -1 -1 9 9 9])

this 
(gen/sample (gen/bind gen/int (fn [i] (gen/return (take 5 (repeat i))))))
returns e.g. ((0 0 0 0 0) (-1 -1 -1 -1 -1) (0 0 0 0 0))
which is of no interest to me :-(

Is that even possible under test.check to have a generator like that?

Best,
Maciej Jaśkowski

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to