collections.ts ×1

Frontier kind: Code frontier

unlabeled · c_b9733bbb4f1e

4 tests · 3364 LOC · 18 files · introduces 0 tests · 11 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
1 range11 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
470 ranges3364 lines · 18 files · Browse complete extent
All tests (intent)
4 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Introduced files, introduced tests, and structurally relevant concept specializationripgrepTextSearchEngine.ts ×15 · 101 introduced LOCripgrepTextSearchEngine.…lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if an event subscription is not cleaned up|occurrence=1 · 0 introduced LOClifecycle.test|title=No …lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if a disposable is not disposed|occurrence=1 · 0 introduced LOClifecycle.test|title=No …lifecycle.ts ×5 · 64 introduced LOClifecycle.ts ×5collections.test|title=Collections groupBy|occurrence=1 · 0 introduced LOCcollections.test|title=C…lifecycle.ts ×6 · 16 introduced LOClifecycle.ts ×6lifecycle.ts ×1 · 3 introduced LOClifecycle.ts ×1map.ts ×97 · 3334 introduced LOCmap.ts ×97src/vs/base/common/arrays.ts · 949 LOCcommon/arrays.tssrc/vs/base/common/arraysFind.ts · 226 LOCcommon/arraysFind.tssrc/vs/base/common/assert.ts · 91 LOCcommon/assert.tssrc/vs/base/common/charCode.ts · 450 LOCcommon/charCode.tssrc/vs/base/common/collections.ts · 176 LOCcommon/collections.tssrc/vs/base/common/errors.ts · 357 LOCcommon/errors.tssrc/vs/base/common/functional.ts · 32 LOCcommon/functional.tssrc/vs/base/common/iterator.ts · 194 LOCcommon/iterator.tssrc/vs/base/common/lifecycle.ts · 974 LOCcommon/lifecycle.tssrc/vs/base/common/map.ts · 1016 LOCcommon/map.tssrc/vs/base/common/marshallingIds.ts · 33 LOCcommon/marshallingIds.tssrc/vs/base/common/path.ts · 1589 LOCcommon/path.tssrc/vs/base/common/platform.ts · 281 LOCcommon/platform.tssrc/vs/base/common/process.ts · 76 LOCcommon/process.tssrc/vs/base/common/types.ts · 410 LOCcommon/types.tssrc/vs/base/common/uri.ts · 754 LOCcommon/uri.tssrc/vs/base/test/common/utils.ts · 107 LOCcommon/utils.tssrc/vs/nls.ts · 244 LOCvs/nls.tssrc/vs/workbench/services/search/node/ripgrepSearchUtils.ts · 34 LOCnode/ripgrepSearchUtils.…src/vs/workbench/services/search/node/ripgrepTextSearchEngine.ts · 783 LOCnode/ripgrepTextSearchEn…collections.test|title=Collections groupBy|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/collections.test|title=Collections groupBy|occurrence=1collections.test|title=C…lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if a disposable is not disposed|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if a disposable is not disposed|occurrence=1lifecycle.test|title=No …lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if an event subscription is not cleaned up|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/base/test/common/lifecycle.test|title=No Leakage Utilities throwIfDisposablesAreLeaked throws if an event subscription is not cleaned up|occurrence=1lifecycle.test|title=No …ripgrepTextSearchEngineUtils.test|title=RipgrepTextSearchEngine getRgArgs simple includes|occurrence=1 · introduced test · mocha:v1|namespace=vscode@05c208e9e28d8c1c723fa08f85e2b7a96092e8e5|file=vs/workbench/services/search/test/node/ripgrepTextSearchEngineUtils.test|title=RipgrepTextSearchEngine getRgArgs simple includes|occurrence=1ripgrepTextSearchEngineU…Focused concept · collections.ts ×1 · 11 introduced LOCcollections.ts ×1

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 11 introduced LOC across 1 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/base/common/collections.ts 11 introduced LOC · 1 range

Open complete file

21 */
22 export function groupBy<K extends string | number | symbol, V>(data: readonly V[], groupFn: (element: V) => K): Partial<Record<K, V[]>> {
23 > const result: Partial<Record<K, V[]>> = Object.create(null); collections.ts
24 > for (const element of data) {
25 > const key = groupFn(element);
26 > let target = result[key];
27 > if (!target) {
28 > target = result[key] = [];
29 > }
30 > target.push(element);
31 > }
32 > return result;
33 > }
34
35 export function groupByMap<K, V>(data: V[], groupFn: (element: V) => K): Map<K, V[]> {