--[=[ @interface Box @within FFI Box is an untyped, sized memory area that Lua can manage. This area is safe within Lua. Operations have their boundaries checked. You can passing box as raw arguments or as pointer to outside. It also helps you handle data that Lua cannot handle. or you can reuse box to save cost from convertsion. Depending on the type, operations such as sum, mul, and mod may be implemented. See Types ```lua ffi.box(size) ``` This is a dictionary that will contain the following values: * `readOnly` - If the target path is read-only or not ]=] export type Box = { size: number, ref: (self: Box)->Ref, } export type BoxConstructor = (size: number)->Box export type Type = {} ---! FIXME: better typing for PointerSize export type PointerSize = number -- typeof(5) | typeof(8) export type Arr = { inner: T, size: number, ptr: (self: Arr) -> any, } --[=[ @interface Ptr @within FFI ]=] ---! FIXME: due to recursive type limition. hardcoded 6 depth. better idea? export type Ptr = { inner: T, size: PointerSize, ptr: (self: Ptr)->PtrPtr>, arr: (self: Ptr, size: number) -> Arr>, } export type PtrPtr = { inner: T, size: PointerSize, ptr: (self: PtrPtr)->PtrPtrPtr>, arr: (self: PtrPtr, size: number) -> Arr>, } export type PtrPtrPtr = { inner: T, size: PointerSize, ptr: (self: PtrPtrPtr)->PtrPtrPtrPtr>, arr: (self: PtrPtrPtr, size: number) -> Arr>, } export type PtrPtrPtrPtr = { inner: T, size: PointerSize, ptr: (self: PtrPtrPtrPtr)->PtrPtrPtrPtrPtr>, arr: (self: PtrPtrPtrPtr, size: number) -> Arr>, } export type PtrPtrPtrPtrPtr = { inner: T, size: PointerSize, ptr: (self: PtrPtrPtrPtrPtr)->PtrPtrPtrPtrPtrPtr>, arr: (self: PtrPtrPtrPtrPtr, size: number) -> Arr>, } export type PtrPtrPtrPtrPtrPtr = { inner: T, size: PointerSize, ptr: (self: PtrPtrPtrPtrPtrPtr)->any, -- Yes. At this point. more type is useless. arr: (self: PtrPtrPtrPtrPtrPtr, size: number) -> Arr>, }