(self: List<A>)
| 894 | * @category getters |
| 895 | */ |
| 896 | export const tail = <A>(self: List<A>): Option.Option<List<A>> => isNil(self) ? Option.none() : Option.some(self.tail) |
| 897 | |
| 898 | /** |
| 899 | * Takes the specified number of elements from the beginning of the specified |