| 156 | * custom collection behaviors. |
| 157 | */ |
| 158 | export class BaseCollection<T> implements ICollection<Node<T>> { |
| 159 | protected keyMap: Map<Key, CollectionNode<T>> = new Map(); |
| 160 | protected firstKey: Key | null = null; |
| 161 | protected lastKey: Key | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected