This commit is contained in:
Dante
2026-05-21 20:15:16 -07:00
parent fe8bd1e307
commit add4d4cc87
2664 changed files with 198448 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package eval.luv;
/**
Barriers.
@see https://aantron.github.io/luv/luv/Luv/Barrier
**/
@:coreType abstract Barrier {
/**
Allocates and initializes a barrier.
**/
static public function init(count:Int):Result<Barrier>;
/**
Cleans up a barrier.
**/
public function destroy():Void;
/**
Waits on a barrier.
**/
public function wait():Bool;
}