* Create a new integer generator which creates integers ranging from lo to
* hi based on the given {@link Distribution}.
*/
public static Generator<Byte> bytes(byte lo, byte hi,
Distribution distribution) {
return new ByteGenerator(lo, hi, distribution);
}