UNPKG

hyperformula

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

23 lines (21 loc) 689 B
"use strict"; exports.__esModule = true; exports.RowSearchStrategy = void 0; var _AdvancedFind = require("./AdvancedFind"); /** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ class RowSearchStrategy extends _AdvancedFind.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); } } exports.RowSearchStrategy = RowSearchStrategy;