(self: ReadonlyArray<A>)
| 702 | * @since 2.0.0 |
| 703 | */ |
| 704 | export const last = <A>(self: ReadonlyArray<A>): Option.Option<A> => |
| 705 | isNonEmptyReadonlyArray(self) ? Option.some(lastNonEmpty(self)) : Option.none() |
| 706 | |
| 707 | /** |
| 708 | * Get the last element of a non empty array. |
nothing calls this directly
no test coverage detected