hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
17 lines • 565 B
JavaScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { AdvancedFind } from "./AdvancedFind.mjs";
export class RowSearchStrategy extends AdvancedFind {
constructor(dependencyGraph) {
super(dependencyGraph);
this.dependencyGraph = dependencyGraph;
}
/*
* WARNING: Finding lower/upper bounds in unordered ranges is not supported. When ordering === 'none', assumes matchExactly === true
*/
find(searchKey, rangeValue, searchOptions) {
return this.basicFind(searchKey, rangeValue, 'col', searchOptions);
}
}