/** * Constructs a new `Set`. * * @tsplus static Set.Ops __call * @tsplus static Set.Ops make */ export function make(...data: As): Set { return Set.from(data) }