(options: {
readonly start: number
readonly factor: number
readonly count: number
})
| 3203 | * @since 4.0.0 |
| 3204 | */ |
| 3205 | export const exponentialBoundaries = (options: { |
| 3206 | readonly start: number |
| 3207 | readonly factor: number |
| 3208 | readonly count: number |
| 3209 | }): ReadonlyArray<number> => |
| 3210 | boundariesFromIterable(Arr.makeBy(options.count - 1, (i) => options.start * Math.pow(options.factor, i))) |
| 3211 | |
| 3212 | // Fiber Runtime Metrics |
| 3213 |
no test coverage detected