Function bytes [src]
Read random bytes into the specified buffer until full.
Prototype
pub fn bytes(r: Random, buf: []u8) void
Parameters
r: Random
buf: []u8
Source
pub fn bytes(r: Random, buf: []u8) void {
r.fillFn(r.ptr, buf);
}
pub fn bytes(r: Random, buf: []u8) void
r: Random
buf: []u8
pub fn bytes(r: Random, buf: []u8) void {
r.fillFn(r.ptr, buf);
}