(self: Iterable<A>)
| 728 | * @since 2.0.0 |
| 729 | */ |
| 730 | export const tail = <A>(self: Iterable<A>): Option.Option<Array<A>> => { |
| 731 | const input = fromIterable(self) |
| 732 | return isNonEmptyReadonlyArray(input) ? Option.some(tailNonEmpty(input)) : Option.none() |
| 733 | } |
| 734 | |
| 735 | /** |
| 736 | * Get all but the first element of a `NonEmptyReadonlyArray`. |
nothing calls this directly
no test coverage detected
searching dependent graphs…