/** * @tsplus fluent ImmutableArray isNonEmpty */ export function isNonEmpty(self: ImmutableArray): self is NonEmptyImmutableArray { return self.array.length > 0 }