/** * @tsplus static ImmutableArray.Ops from * @tsplus getter Collection toImmutableArray */ export function from(iterable: Collection): ImmutableArray { return new ImmutableArray(Array.from(iterable)) }