IntSet typedef

IntSet = Set<Int>

A set of unique integers using the Int alias.

{@tool snippet}

IntSet scores = {100, 200, 300};
print(scores.contains(200)); // true

{@end-tool}

Implementation

typedef IntSet = Set<Int>;