| 48 | } |
| 49 | |
| 50 | interface IndexedList<V>{[v: string]: V[]} |
| 51 | export class IndexList<V> extends Index<IndexedList<V>> { |
| 52 | insert(key: string, value: V) { |
| 53 | if(!this.index[key] || this.index[key].indexOf(value) === -1) { |
nothing calls this directly
no outgoing calls
no test coverage detected