Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tsdotnet/linked-node-list

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsdotnet/linked-node-list - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

6

dist-esm/LinkedNodeList.js

@@ -25,3 +25,3 @@ /*

*
* The count (or length) of this LinkedNodeList is tracked as '.unsafeCount' and calling '.getCount()' will iterate the list.
* The count (or length) of this `LinkedNodeList` is tracked as `.unsafeCount` and calling `.getCount()` will iterate the list.
*

@@ -37,4 +37,4 @@ * @template TNode The node type.

* Returns the tracked number of nodes in the list.
* Since a LinkedNodeList is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call .getCount() to iterate over each node.
* Since a `LinkedNodeList` is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call `.getCount()` to iterate over each node.
* @returns {number}

@@ -41,0 +41,0 @@ */

@@ -20,3 +20,3 @@ import { ArrayLikeWritable, PredicateWithIndex } from '@tsdotnet/common-interfaces';

*
* The count (or length) of this LinkedNodeList is tracked as '.unsafeCount' and calling '.getCount()' will iterate the list.
* The count (or length) of this `LinkedNodeList` is tracked as `.unsafeCount` and calling `.getCount()` will iterate the list.
*

@@ -32,4 +32,4 @@ * @template TNode The node type.

* Returns the tracked number of nodes in the list.
* Since a LinkedNodeList is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call .getCount() to iterate over each node.
* Since a `LinkedNodeList` is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call `.getCount()` to iterate over each node.
* @returns {number}

@@ -36,0 +36,0 @@ */

@@ -28,3 +28,3 @@ "use strict";

*
* The count (or length) of this LinkedNodeList is tracked as '.unsafeCount' and calling '.getCount()' will iterate the list.
* The count (or length) of this `LinkedNodeList` is tracked as `.unsafeCount` and calling `.getCount()` will iterate the list.
*

@@ -40,4 +40,4 @@ * @template TNode The node type.

* Returns the tracked number of nodes in the list.
* Since a LinkedNodeList is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call .getCount() to iterate over each node.
* Since a `LinkedNodeList` is unprotected, it is possible to modify the chain and this count could get out of sync.
* To know the actual number of nodes, call `.getCount()` to iterate over each node.
* @returns {number}

@@ -44,0 +44,0 @@ */

{
"name": "@tsdotnet/linked-node-list",
"version": "1.2.4",
"version": "1.2.5",
"description": "An unprotected bi-directional linked list. Useful for implementing other collections.",

@@ -5,0 +5,0 @@ "author": "electricessence",

@@ -22,4 +22,4 @@ # ![alt text](https://avatars1.githubusercontent.com/u/64487547?s=30 "tsdotnet") tsdotnet / linked-node-list

The count (or length) of this `LinkedNodeList` is tracked as '.unsafeCount' and calling '.getCount()' will iterate the list.
The count (or length) of this `LinkedNodeList` is tracked as `.unsafeCount` and calling `.getCount()` will iterate the list.
A perfect example of the use of `LinkedNodeList` is [`LinkedList`](https://github.com/tsdotnet/linked-list/) as it uses it for its internal collection.
A perfect example of the use of `LinkedNodeList` is with [`LinkedList`](https://github.com/tsdotnet/linked-list/) as it uses it for its internal collection.
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc