(self: Chunk<A>)
| 869 | * @category unsafe |
| 870 | */ |
| 871 | export const unsafeLast = <A>(self: Chunk<A>): A => unsafeGet(self, self.length - 1) |
| 872 | |
| 873 | /** |
| 874 | * Returns the last element of this non empty chunk. |
nothing calls this directly
no test coverage detected