/** * Filters out `None` values from the `ImmutableArray`. * * @tsplus getter ImmutableArray compact */ export function compact(self: ImmutableArray>): ImmutableArray { return self.collect(identity) }