Right now, to write an it.uses declaration iterating over a range of ints, I have to write:
it.uses(IntStream.rangeClosed(low, high).mapToObj(x -> x)).toShow((expect, number) -> ...);
It would be nice if there was a uses declaration accepting IntStream directly (and perhaps LongStream and DoubleStream) so that the mapToObj call could be omitted, reducing clutter.
Right now, to write an
it.usesdeclaration iterating over a range of ints, I have to write:It would be nice if there was a
usesdeclaration acceptingIntStreamdirectly (and perhapsLongStreamandDoubleStream) so that themapToObjcall could be omitted, reducing clutter.