hi, is there an equivalent of listOfN
? list-distinct
comes close (with its :num-elements
param) but I don't want to forbid duplicates.
also, is there a function to convert a list of generators to a generator of a list?
i suppose apply gen/tuple
could do the latter
actually yes apply gen/tuple
definitely answers my second question
@johanatan gen/vector can do it too.
@gfredericks what about listOfN
?
@johanatan does that mean a fixed length list? That's what I'm saying gen/vector can do, if you pass a length arg
Oh I see. Yes a fixed length list
Thx!