Socket
Socket
Sign inDemoInstall

@luminela/ts-collections

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.0.0-beta.4 to 7.0.0-beta.5

2

dist/src/lookup/ILookup.d.ts
import { IGrouping } from "../enumerator/Enumerable";
import { IEnumerable } from "../enumerator/IEnumerable";
export interface ILookup<TKey, TElement> extends IEnumerable<IGrouping<TKey, TElement>> {
readonly Count: number;
readonly length: number;
get(key: TKey): IEnumerable<TElement>;

@@ -6,0 +6,0 @@ hasKey(key: TKey): boolean;

@@ -18,3 +18,3 @@ import { IEnumerable } from "../enumerator/IEnumerable";

private readonly lookupTree;
readonly Count: number;
readonly length: number;
private constructor();

@@ -21,0 +21,0 @@ static create<TSource, TKey, TValue>(source: Iterable<TSource>, keySelector: Selector<TSource, TKey>, valueSelector: Selector<TSource, TValue>, keyComparator?: OrderComparator<TKey>): Lookup<TKey, TValue>;

{
"name": "@luminela/ts-collections",
"version": "7.0.0-beta.4",
"version": "7.0.0-beta.5",
"description": "A collection of wrappers for common data structures in TypeScript",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc