/** * @since 1.0.0 */ import type { NonEmptyArray } from "@effect/data/ReadonlyArray" /** @internal */ export const isNonEmptyArray = (self: ReadonlyArray): self is NonEmptyArray => self.length > 0