Package: effect
Module: Chunk
Determines if the chunk is not empty.
Example (Checking for non-empty chunks)
import { Chunk } from "effect"
console.log(Chunk.isNonEmpty(Chunk.empty())) // false
console.log(Chunk.isNonEmpty(Chunk.make(1, 2, 3))) // true
Signature
declare const isNonEmpty: <A>(self: Chunk<A>) => self is NonEmptyChunk<A>
Since v2.0.0