Socket
Socket
Sign inDemoInstall

@rimbu/graph-arrow-valued

Package Overview
Dependencies
9
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.11 to 0.6.0

6

dist/types/arrow/arrow-valued-graph-base.d.ts

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

import { RelatedTo } from '@rimbu/common';
import { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import { Stream, Streamable } from '@rimbu/stream';
import type { RelatedTo } from '@rimbu/common';
import type { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import type { Stream, Streamable } from '@rimbu/stream';
export interface ArrowValuedGraphBase<N, V, Tp extends ArrowValuedGraphBase.Types = ArrowValuedGraphBase.Types> extends ValuedGraphCustom.ValuedGraphBase<N, V, Tp> {

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

@@ -1,7 +0,7 @@

import { RMap } from '@rimbu/collection-types';
import { OmitStrong } from '@rimbu/common';
import type { RMap } from '@rimbu/collection-types';
import type { OmitStrong } from '@rimbu/common';
import { ValuedGraphElement } from '@rimbu/graph';
import { HashMap } from '@rimbu/hashed';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';
/**

@@ -8,0 +8,0 @@ * An type-invariant immutable valued arrow (directed) graph.

@@ -1,7 +0,7 @@

import { RMap } from '@rimbu/collection-types';
import { OmitStrong } from '@rimbu/common';
import type { RMap } from '@rimbu/collection-types';
import type { OmitStrong } from '@rimbu/common';
import { ValuedGraphElement } from '@rimbu/graph';
import { SortedMap } from '@rimbu/sorted';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';
/**

@@ -8,0 +8,0 @@ * An type-invariant immutable valued arrow (directed) graph.

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

import { RMap } from '@rimbu/collection-types';
import type { RMap } from '@rimbu/collection-types';
import { ValuedGraphElement } from '@rimbu/graph';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';
/**

@@ -6,0 +6,0 @@ * An type-invariant immutable valued arrow (directed) graph.

{
"name": "@rimbu/graph-arrow-valued",
"version": "0.5.11",
"version": "0.6.0",
"description": "Immutable Graph data structures for TypeScript",

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

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

@@ -63,8 +64,8 @@ "bundle:main": "tsc --p tsconfig.main.json",

"dependencies": {
"@rimbu/collection-types": "^0.5.11",
"@rimbu/common": "^0.5.9",
"@rimbu/graph": "^0.5.11",
"@rimbu/hashed": "^0.5.11",
"@rimbu/sorted": "^0.5.11",
"@rimbu/stream": "^0.5.11"
"@rimbu/collection-types": "^0.6.0",
"@rimbu/common": "^0.6.0",
"@rimbu/graph": "^0.6.0",
"@rimbu/hashed": "^0.6.0",
"@rimbu/sorted": "^0.6.0",
"@rimbu/stream": "^0.6.0"
},

@@ -74,3 +75,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>

@@ -17,2 +17,6 @@

For complete documentation please visit the _[Rimbu Docs](http://rimbu.org)_.
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

@@ -36,5 +40,3 @@

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

@@ -41,0 +43,0 @@ "noStrictGenericChecks": true

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

import { RelatedTo } from '@rimbu/common';
import { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import { Stream, Streamable } from '@rimbu/stream';
import type { RelatedTo } from '@rimbu/common';
import type { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import type { Stream, Streamable } from '@rimbu/stream';

@@ -37,5 +37,8 @@ export interface ArrowValuedGraphBase<

export namespace ArrowValuedGraphBase {
type NonEmptyBase<N, V, Tp extends ArrowValuedGraphBase.Types> =
ValuedGraphCustom.ValuedGraphBase.NonEmpty<N, V, Tp> &
ArrowValuedGraphBase<N, V, Tp>;
type NonEmptyBase<
N,
V,
Tp extends ArrowValuedGraphBase.Types
> = ValuedGraphCustom.ValuedGraphBase.NonEmpty<N, V, Tp> &
ArrowValuedGraphBase<N, V, Tp>;

@@ -42,0 +45,0 @@ export interface NonEmpty<

@@ -1,7 +0,7 @@

import { RMap } from '@rimbu/collection-types';
import { OmitStrong } from '@rimbu/common';
import type { RMap } from '@rimbu/collection-types';
import type { OmitStrong } from '@rimbu/common';
import { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import { HashMap } from '@rimbu/hashed';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';

@@ -8,0 +8,0 @@ /**

@@ -1,7 +0,7 @@

import { RMap } from '@rimbu/collection-types';
import { OmitStrong } from '@rimbu/common';
import type { RMap } from '@rimbu/collection-types';
import type { OmitStrong } from '@rimbu/common';
import { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import { SortedMap } from '@rimbu/sorted';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';

@@ -8,0 +8,0 @@ /**

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

import { RMap } from '@rimbu/collection-types';
import type { RMap } from '@rimbu/collection-types';
import { ValuedGraphCustom, ValuedGraphElement } from '@rimbu/graph';
import { Stream, Streamable } from '@rimbu/stream';
import { ArrowValuedGraphBase } from '../graph-custom';
import type { Stream, Streamable } from '@rimbu/stream';
import type { ArrowValuedGraphBase } from '../graph-custom';

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc