Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package eval.luv;
@:forward
abstract RandomRequest(Request) to Request {}
/**
System entropy source.
@see https://aantron.github.io/luv/luv/Luv/Random
**/
extern class Random {
static function createRequest():RandomRequest;
/**
Fills the given buffer with bits from the system entropy source.
**/
static function random(loop:Loop, buffer:Buffer, ?request:RandomRequest, callback:(result:Result<Result.NoData>)->Void):Void;
}
extern class RandomSync {
/**
Fills the given buffer with bits from the system entropy source.
**/
static function random(buffer:Buffer):Result<Result.NoData>;
}