mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
7 lines
149 B
V
7 lines
149 B
V
module wyrand
|
|
|
|
// free should be called when the generator is no longer needed
|
|
@[unsafe]
|
|
pub fn (mut rng WyRandRNG) free() {
|
|
unsafe { free(rng) }
|
|
}
|