import { concreteTArray } from "@effect/core/stm/TArray/operations/_internal/InternalTArray"
/**
* Checks if the array is empty.
*
* @tsplus getter effect/core/stm/TArray isEmpty
*/
export function isEmpty(self: TArray): boolean {
concreteTArray(self)
return self.chunk.length <= 0
}