MCPcopy
hub / github.com/palantir/plottable / IRTreeSplitStrategy

Interface IRTreeSplitStrategy

src/utils/rTreeSplitStrategies.ts:10–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8export type NodePair<T> = [RTreeNode<T>, RTreeNode<T>];
9
10export interface IRTreeSplitStrategy {
11 split: <T>(entries: RTreeNode<T>[], nodes: NodePair<T>) => void;
12}
13
14export class SplitStrategyTrivial implements IRTreeSplitStrategy {
15 public split<T>(entries: RTreeNode<T>[], nodes: NodePair<T>) {

Callers

nothing calls this directly

Implementers 2

SplitStrategyTrivialsrc/utils/rTreeSplitStrategies.ts
SplitStrategyLinearsrc/utils/rTreeSplitStrategies.ts

Calls

no outgoing calls

Tested by

no test coverage detected