import { concreteChunkId } from "@tsplus/stdlib/collections/Chunk/definition" /** * Returns the number of elements in the chunk. * * @tsplus getter Chunk size */ export function size(self: Chunk) { return concreteChunkId(self).length }