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.

HashSet.zs 184B

1234567891011
  1. export class HashSet<T> {
  2. public implements Set<T> {
  3. add(value as T) as bool;
  4. remove(value as T) as bool;
  5. get size as usize;
  6. in(value as T) as bool;
  7. for(x as T);
  8. }
  9. }