| 8 | export type NodePair<T> = [RTreeNode<T>, RTreeNode<T>]; |
| 9 | |
| 10 | export interface IRTreeSplitStrategy { |
| 11 | split: <T>(entries: RTreeNode<T>[], nodes: NodePair<T>) => void; |
| 12 | } |
| 13 | |
| 14 | export class SplitStrategyTrivial implements IRTreeSplitStrategy { |
| 15 | public split<T>(entries: RTreeNode<T>[], nodes: NodePair<T>) { |
nothing calls this directly
no outgoing calls
no test coverage detected