extra-array
Advanced tools
Comparing version 4.1.17 to 4.1.18
{ | ||
"name": "extra-array", | ||
"version": "4.1.17", | ||
"version": "4.1.18", | ||
"description": "An array is a collection of values, stored contiguously.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -30,9 +30,9 @@ An [array] is a collection of values, stored contiguously.<br> | ||
you need. All functions except `from*()` take array as 1st parameter. Some | ||
functions operate on a specified range in the array, and are called `ranged*()`. | ||
Functions like `swap()` are pure and do not modify the array itself, while | ||
functions like `swap$()` *do modify (update)* the array itself. Some functions | ||
accept a map function for *faster comparision*, such as `unique()`. Furher, | ||
functions which return an iterable instead of an array are prefixed with `i`, | ||
such as `isubsequences()`. We borrow some names from other programming languages | ||
such as *Haskell*, *Python*, *Java*, and *Processing*. | ||
functions operate on a specified range in the array and are called `ranged*()`, | ||
such as `rangePartialSort()`. Functions like `swap()` are pure and do not modify | ||
the array itself, while functions like `swap$()` *do modify (update)* the array | ||
itself. Some functions accept a map function for *faster comparision*, such as | ||
`unique()`. Furher, functions which return an iterable instead of an array are | ||
prefixed with `i`, such as `isubsequences()`. We borrow some names from other | ||
programming languages such as *Haskell*, *Python*, *Java*, and *Processing*. | ||
@@ -39,0 +39,0 @@ This package is available in *Node.js* and *Web* formats. To use it on the web, |
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
190650