(self: Chunk<A>)
| 1471 | * @since 4.0.0 |
| 1472 | */ |
| 1473 | export const lastUnsafe = <A>(self: Chunk<A>): A => getUnsafe(self, self.length - 1) |
| 1474 | |
| 1475 | /** |
| 1476 | * Returns the last element of this non empty chunk. |
nothing calls this directly
no test coverage detected