A set of unique integers using the Int alias.
Int
{@tool snippet}
IntSet scores = {100, 200, 300}; print(scores.contains(200)); // true
{@end-tool}
typedef IntSet = Set<Int>;