/** * Returns the first element of this chunk if it exists. * * @tsplus getter Chunk head */ export function head(self: Chunk): Maybe { return self.get(0) }