Filler implementation for std Set

This commit is contained in:
dcodeIO
2018-01-15 00:08:06 +01:00
parent 49d29fc9f2
commit f2ba4b4a76
13 changed files with 7637 additions and 3 deletions

8
std/assembly.d.ts vendored
View File

@ -271,6 +271,14 @@ interface Number {}
interface Object {}
interface RegExp {}
declare class Set<T> {
readonly size: i32;
has(value: T): bool;
add(value: T): void;
delete(value: T): bool;
clear(): void;
}
// Internal decorators
/** Annotates an element as a program global. */