mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 23:12:19 +00:00
17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
export namespace table {
|
|
|
|
// export function copy(dst: u32, src: u32, n: u32): void {
|
|
// __table_copy(dst, src, n);
|
|
// }
|
|
|
|
// Passive elements
|
|
|
|
// export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
|
|
// __table_init(elementIndex, srcOffset, dstOffset, n);
|
|
// }
|
|
|
|
// export function drop(elementIndex: u32): void {
|
|
// __table_drop(elementIndex);
|
|
// }
|
|
}
|