( table: Record<string, number>[], key: string, value: number )
| 68 | * @private |
| 69 | */ |
| 70 | export const _rlookupByKey = ( |
| 71 | table: Record<string, number>[], |
| 72 | key: string, |
| 73 | value: number |
| 74 | ) => |
| 75 | _lookup(table, value, index => table[index][key] >= value); |
| 76 | |
| 77 | /** |
| 78 | * Return subset of `values` between `min` and `max` inclusive. |
no test coverage detected