Contains standard libraries for ZenCode.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Set.zs 217B

123456789101112
  1. export interface Set<T> {
  2. add(value as T) as bool;
  3. remove(value as T) as bool;
  4. get size as usize;
  5. toArray();
  6. toArray(comparator as function(a as T, b as T) as int);
  7. in(value as T) as bool;
  8. for(x as T);
  9. }