v2 / 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.
4module buffer
5
6pub struct PRNGBuffer {
7mut:
8 bytes_left int
9 buffer u64
10}
11