We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b61a7 commit 9ff0bb4Copy full SHA for 9ff0bb4
src/vs/workbench/services/positronDataExplorer/common/utils.ts
@@ -11,15 +11,6 @@ export interface Range {
11
readonly max: number;
12
}
13
14
-/**
15
- * Creates an array from an index range.
16
- * @param startIndex The start index.
17
- * @param endIndex The end index.
18
- * @returns An array with the specified index range.
19
- */
20
-export const arrayFromIndexRange = (startIndex: number, endIndex: number) =>
21
- Array.from({ length: endIndex - startIndex + 1 }, (_, i) => startIndex + i);
22
-
23
/**
24
* Determines whether an array of numbers is contiguous.
25
* @param array The array of numbers.
0 commit comments