* Create a new long generator which creates longs ranging from lo to hi
* based on the given {@link Distribution}.
*/
public static Generator<Long> longs(long lo, long hi,
Distribution distribution) {
return new LongGenerator(lo, hi, distribution);
}