(self: List<A>)
| 709 | * @category getters |
| 710 | */ |
| 711 | export const last = <A>(self: List<A>): Option.Option<A> => isNil(self) ? Option.none() : Option.some(unsafeLast(self)!) |
| 712 | |
| 713 | /** |
| 714 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected