Function bytes [src]

Read random bytes into the specified buffer until full.

Prototype

pub fn bytes(r: Random, buf: []u8) void

Parameters

r: Randombuf: []u8

Source

pub fn bytes(r: Random, buf: []u8) void { r.fillFn(r.ptr, buf); }