extra-array
Advanced tools
Comparing version 4.1.21 to 4.1.22
{ | ||
"name": "extra-array", | ||
"version": "4.1.21", | ||
"version": "4.1.22", | ||
"description": "An array is a collection of values, stored contiguously.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -27,13 +27,15 @@ An [array] is a collection of values, stored contiguously.<br> | ||
be able to achieve your goals faster, regardless of your level of expertise. Try | ||
it out today and discover how it can transform your development experience! We | ||
use a consistent naming scheme that helps you quickly identify the functions 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*()`, such as | ||
`rangedPartialSort()`. 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 comparison*, such as | ||
`unique()`. Further, 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*. | ||
it out today and discover how it can transform your development experience! | ||
We use a consistent naming scheme that helps you quickly identify the functions | ||
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*()`, | ||
such as `rangedPartialSort()`. 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 comparison*, | ||
such as `unique()`. Further, 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*. | ||
This package is available in *Node.js* and *Web* formats. To use it on the web, | ||
@@ -40,0 +42,0 @@ simply use the `extra_array` global variable after loading with a `<script>` |
190663
504