(self: TxChunk<A>)
| 536 | * @since 4.0.0 |
| 537 | */ |
| 538 | export const isNonEmpty = <A>(self: TxChunk<A>): Effect.Effect<boolean> => |
| 539 | modify(self, (current) => [Chunk.isNonEmpty(current), current]) |
| 540 | |
| 541 | /** |
| 542 | * Takes the first `n` elements from the `TxChunk`. |