Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v
/
vlib
/
rand
/
buffer
/
buffer.v
10
lines
·
9
sloc
·
248 bytes
·
763f94388b1ceff59c3e68ebda2c9f57197f32a4
Raw
1
// Copyright (c) 2019-2024 Alexander Medvednikov. All rights reserved.
2
// Use of this source code is governed by an MIT license
3
// that can be found in the LICENSE file.
4
module
buffer
5
6
pub
struct
PRNGBuffer {
7
mut
:
8
bytes_left int
9
buffer u64
10
}
11