| 13 | import {Collection, Key, Node} from '@react-types/shared'; |
| 14 | |
| 15 | export class TreeCollection<T> implements Collection<Node<T>> { |
| 16 | private keyMap: Map<Key, Node<T>> = new Map(); |
| 17 | private iterable: Iterable<Node<T>>; |
| 18 | private firstKey: Key | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected