You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@rimbu/collection-types

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.11 to 0.6.0

6

dist/types/map/base.d.ts

@@ -1,5 +0,5 @@

import { Token } from '@rimbu/base';
import { ArrayNonEmpty, OptLazy, OptLazyOr, RelatedTo, SuperOf, ToJSON, TraverseState, Update } from '@rimbu/common';
import type { Token } from '@rimbu/base';
import type { ArrayNonEmpty, OptLazy, OptLazyOr, RelatedTo, SuperOf, ToJSON, TraverseState, Update } from '@rimbu/common';
import { FastIterable, Stream, Streamable, StreamSource } from '@rimbu/stream';
import { KeyValue, WithKeyValue } from '../custom-base';
import type { KeyValue, WithKeyValue } from '../custom-base';
export interface VariantMapBase<K, V, Tp extends VariantMapBase.Types = VariantMapBase.Types> extends FastIterable<readonly [K, V]> {

@@ -6,0 +6,0 @@ /**

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { RMapBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { RMapBase } from '../custom-base';
/**

@@ -4,0 +4,0 @@ * A type-invariant immutable Map of key type K, and value type V.

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { VariantMapBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { VariantMapBase } from '../custom-base';
/**

@@ -4,0 +4,0 @@ * A type-variant immutable Map of key type K, and value type V.

@@ -1,4 +0,4 @@

import { ArrayNonEmpty, RelatedTo, ToJSON, TraverseState } from '@rimbu/common';
import type { ArrayNonEmpty, RelatedTo, ToJSON, TraverseState } from '@rimbu/common';
import { FastIterable, Stream, Streamable, StreamSource } from '@rimbu/stream';
import { Elem, WithElem } from '../custom-base';
import type { Elem, WithElem } from '../custom-base';
export interface VariantSetBase<T, Tp extends VariantSetBase.Types = VariantSetBase.Types> extends FastIterable<T> {

@@ -5,0 +5,0 @@ /**

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { RSetBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { RSetBase } from '../custom-base';
/**

@@ -4,0 +4,0 @@ * A type-invariant immutable Set of value type T.

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { VariantSetBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { VariantSetBase } from '../custom-base';
/**

@@ -4,0 +4,0 @@ * A type-variant immutable Set of value type T.

@@ -1,4 +0,4 @@

import { CollectFun } from '@rimbu/common';
import { Stream, StreamSource } from '@rimbu/stream';
import { WithElem, WithKeyValue, WithRow } from '../custom-base';
import type { CollectFun } from '@rimbu/common';
import type { Stream, StreamSource } from '@rimbu/stream';
import type { WithElem, WithKeyValue, WithRow } from '../custom-base';
/**

@@ -5,0 +5,0 @@ * Returns the result of converting given `source` immutable collection to a builder, applying given `f` function

{
"name": "@rimbu/collection-types",
"version": "0.5.11",
"version": "0.6.0",
"description": "Type definitions for the basic generic Rimbu collections",

@@ -40,2 +40,3 @@ "keywords": [

"build": "yarn clean && yarn bundle",
"build:deno": "rimraf deno_dist ../../deno_dist/collection-types && denoify && cp ../../config/mod_ts_template deno_dist/mod.ts && mv deno_dist ../../deno_dist/collection-types",
"bundle": "yarn bundle:main && yarn bundle:module && yarn bundle:types",

@@ -55,5 +56,5 @@ "bundle:main": "tsc --p tsconfig.main.json",

"dependencies": {
"@rimbu/base": "^0.5.9",
"@rimbu/common": "^0.5.9",
"@rimbu/stream": "^0.5.11"
"@rimbu/base": "^0.6.0",
"@rimbu/common": "^0.6.0",
"@rimbu/stream": "^0.6.0"
},

@@ -63,3 +64,6 @@ "publishConfig": {

},
"gitHead": "0158eaad0dec4503e92cb308af952869d68faad5"
"denoify": {
"replacer": "../../config/denoify-rimbu-replacer.js"
},
"gitHead": "dbcaad0cb6b1e31ffa64ca2739b9ddb0fc178ebc"
}
<p align="center">
<img src="../../assets/rimbu_logo.svg" />
<img src="https://github.com/rimbu-org/rimbu/raw/main/assets/rimbu_logo.svg" />
</p>

@@ -11,2 +11,4 @@

Or [Try Me Out](https://codesandbox.io/s/rimbu-sandbox-d4tbk?previewwindow=console&view=split&editorsize=65&moduleview=1&module=/src/index.ts) in CodeSandBox.
## Installation

@@ -30,5 +32,3 @@

{
// ...
"compilerOptions": {
// ...
"skipLibCheck": true,

@@ -35,0 +35,0 @@ "noStrictGenericChecks": true

@@ -1,3 +0,3 @@

import { Token } from '@rimbu/base';
import {
import type { Token } from '@rimbu/base';
import type {
ArrayNonEmpty,

@@ -13,3 +13,3 @@ OptLazy,

import { FastIterable, Stream, Streamable, StreamSource } from '@rimbu/stream';
import { KeyValue, WithKeyValue } from '../custom-base';
import type { KeyValue, WithKeyValue } from '../custom-base';

@@ -16,0 +16,0 @@ export interface VariantMapBase<

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { RMapBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { RMapBase } from '../custom-base';

@@ -4,0 +4,0 @@ /**

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { VariantMapBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { VariantMapBase } from '../custom-base';

@@ -4,0 +4,0 @@ /**

@@ -1,4 +0,9 @@

import { ArrayNonEmpty, RelatedTo, ToJSON, TraverseState } from '@rimbu/common';
import type {
ArrayNonEmpty,
RelatedTo,
ToJSON,
TraverseState,
} from '@rimbu/common';
import { FastIterable, Stream, Streamable, StreamSource } from '@rimbu/stream';
import { Elem, WithElem } from '../custom-base';
import type { Elem, WithElem } from '../custom-base';

@@ -5,0 +10,0 @@ export interface VariantSetBase<

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { RSetBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { RSetBase } from '../custom-base';

@@ -4,0 +4,0 @@ /**

@@ -1,3 +0,3 @@

import { Streamable } from '@rimbu/stream';
import { VariantSetBase } from '../custom-base';
import type { Streamable } from '@rimbu/stream';
import type { VariantSetBase } from '../custom-base';

@@ -4,0 +4,0 @@ /**

@@ -1,4 +0,4 @@

import { CollectFun } from '@rimbu/common';
import { Stream, StreamSource } from '@rimbu/stream';
import { WithElem, WithKeyValue, WithRow } from '../custom-base';
import type { CollectFun } from '@rimbu/common';
import type { Stream, StreamSource } from '@rimbu/stream';
import type { WithElem, WithKeyValue, WithRow } from '../custom-base';

@@ -5,0 +5,0 @@ /**

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc