(self: List<A>)
| 700 | * @category getters |
| 701 | */ |
| 702 | export const head = <A>(self: List<A>): Option.Option<A> => isNil(self) ? Option.none() : Option.some(self.head) |
| 703 | |
| 704 | /** |
| 705 | * Returns the last element of the specified list, or `None` if the list is |
no test coverage detected