export function toSet(iterable: Iterable): Set { return new Set(iterable) }