(self: Chunk<A>)
| 859 | * @category elements |
| 860 | */ |
| 861 | export const last = <A>(self: Chunk<A>): Option<A> => get(self, self.length - 1) |
| 862 | |
| 863 | /** |
| 864 | * Returns the last element of this chunk. |
nothing calls this directly
no test coverage detected
searching dependent graphs…