(self: Chunk<A>)
| 843 | * @category unsafe |
| 844 | */ |
| 845 | export const unsafeHead = <A>(self: Chunk<A>): A => unsafeGet(self, 0) |
| 846 | |
| 847 | /** |
| 848 | * Returns the first element of this non empty chunk. |
nothing calls this directly
no test coverage detected
searching dependent graphs…