blob: 96be2d660d7214d5139ea23d8c4b295f5c5f4d6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---@meta
---@class meta
local meta = {}
---@class stream
meta.stream = {}
---sends the rest of a streams contents to a file
---@param T stream
---@param filename string
---@param bytes integer? max amount to read before stopping, 0 if nil
---@param mode string? what mode to open the file, w if nil
function meta.stream.file(T, filename, bytes, mode) end
---reads bytes from a stream
---@param T stream
---@param bytes integer? max amount to read before stopping
---@return string
function meta.stream.read(T, bytes) end
return meta
|