/** * @tsplus static Set.Ops from * @tsplus getter Collection toSet */ export function from(data: Collection): Set { return new Set(data) }