()
| 8 | } |
| 9 | |
| 10 | spread(): [Maybe<T>, Maybe<T>] { |
| 11 | const prev = this.prev; |
| 12 | const next = this.next; |
| 13 | return [prev, next]; |
| 14 | } |
| 15 | |
| 16 | select<S>(selector: (x: T) => S) { |
| 17 | const [prev, next] = this.spread(); |
no outgoing calls
no test coverage detected