@tsdotnet/linked-node-list
Advanced tools
Comparing version 1.2.4 to 1.2.5
@@ -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. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48951