mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
io: pub the RandomReader interface (#12222)
This commit is contained in:
@@ -63,6 +63,6 @@ pub fn read_any(mut r Reader) ?[]byte {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// RandomReader represents a stream of data that can be read from at a random location
|
// RandomReader represents a stream of data that can be read from at a random location
|
||||||
interface RandomReader {
|
pub interface RandomReader {
|
||||||
read_from(pos u64, mut buf []byte) ?int
|
read_from(pos u64, mut buf []byte) ?int
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user