mini-linq.js
Description
LINQ for JavaScript library, which allows to work with arrays in a more easy way and focus on business logic.
Installation
Download and link manually. Or install it
bower install mini-linq-js --save
npm install mini-linq-js --save
Usage
Just link mini-linq.js
or mini-linq.min.js
in your html.
You can also attach and use mini-linq with knockout observableArray. Just link mini-linq.knockout.js
.
Also you may use postponed lazy-execution for arrays by linking mini-linq.lazy.js
.
You also may use it in your Node.JS project by using
;
Available methods
- any
- all
- where
- select
- selectMany
- count
- orderBy
- orderByDescending
- groupBy
- distinct
- firstOrDefault
- lastOrDefault
- joinWith
- groupJoinWith
- contains
- aggregate
- sum
- min
- max
- skip
- take
- ofType
- union
- except
Terms
- Predicate - function which accepts arguments (value, index, array) and returns:
true
if arguments matches specified business-logic conditions;false
otherwise; - Selector - function which accepts arguments (value, index, array) and returns some value which should be used instead of original value.
- Comparator - function which accepts two arguments and returns
true
if two arguments are equal andfalse
otherwise. - Order comparator - function which accepts two arguments and returns:
1
if first argument is greater then second;-1
if second argument is greater then first;0
if they are equal.
Predicates, selectors, comparators can be written in 3 ways:
- usual way:
function(arg) { return arg * 2; }
; - modern way (by using arrow functions):
arg => arg * 2
; - modern way with obsolete browsers support:
'arg => arg * 2'
. It's almost the same as in p.2, just wrapped as a string. mini-linq core will parse this string and generated appropriate function. Important! It's not possible to use closure variables using this way.
Methods description
.any
Description:
.any
checks if there is at least one element in array which matches predicate. If called without predicate then it checks for any element in the array.
Arguments:
.any
accepts predicate or nothing.
Returns:
true
if there is at least one element which matches specified predicate; false
otherwise.
Example of usage:
1 2 3; // will return true, because predicate is not passed and array is not empty1 2 3; // will return true because there is at least one element which match predicate a > 21 2 3; // will return false. There are no elements which match predicate a < 0; // will return false. Array is empty.
.all
Description:
.all
checks if all elements in array match predicate.
Arguments:
.all
accepts predicate.
Returns:
true
if all elements match specified predicate; false
otherwise.
Example of usage:
1 2 3all a > 0; // will return true because all elements matches predicate a > 01 2 3all a > 2; // will return false, because not all elements matches predicate a > 2
.where
Description:
.where
selects all elements which match predicate.
Arguments:
.where
accepts predicate.
Returns:
Array of elements which match predicate. Or empty array if there are no such elements.
Example of usage:
1 2 3 4; // will return [3, 4]1 2 3 4; // will return [] (empty array)
.select
Description:
.select
produces new array by applying selector for each element.
Arguments:
.select
accepts selector.
Returns:
Array of elements produced by applying selector. Or empty array if there are no elements.
Example of usage:
1 2 3 4; // will return [10, 20, 30, 40]; // will return [] (empty array)
.selectMany
Description:
.selectMany
produces new array by applying selector for each element and combining selected arrays together into one single array.
Arguments:
.selectMany
accepts selector.
Returns:
Array of elements produced by applying selector. Or empty array if there are no elements.
Example of usage:
var testArray = x: 1 2 y: 0 x: 3 4 y: 1 x: 5 6 y: 2 ;testArray; // will return [1, 2, 3, 4, 5, 6]testArray; // will return [] because 'y' fields are not arrays
.count
Description:
.count
calculates count of elements which match predicate. If called without predicate then it will return total count of elements.
Arguments:
.count
accepts predicate or nothing.
Returns:
Count of elements which match specified predicate. Or total count of elements if predicate is not specified.
Example of usage:
1 2 3 4; // will return 21 2 3 4; // will return 4
.orderBy
Description:
.orderBy
order elements in ascending order by using selector and order comparator (if specified).
Arguments:
.orderBy
accepts selector as first argument and may accept order comparator as a second argument.
Returns:
Array of ordered elements.
Example of usage:
2 1 4 3; // will return [1, 2, 3, 4]2 1 4 3; // will return [1, 2, 3, 4]
.orderByDescending
Description:
.orderByDescending
order elements in descending order by using selector and order comparator (if specified).
Arguments:
.orderByDescending
accepts selector as first argument and may accept order comparator as a second argument.
Returns:
Array of ordered elements.
Example of usage:
2 1 4 3; // will return [4, 3, 2, 1]2 1 4 3; // will return [4, 3, 2, 1]
.groupBy
Description:
.groupBy
group elements by specified selector as a key.
Arguments:
.groupBy
accepts selector as first argument and may accept result selector as a second argument. If result selector is not specified then (group, values) => { group: group, values: values }
selector will be used.
Returns:
Array of grouped elements.
Example of usage:
2 1 4 3 5 6; // will return [{group: '0', values: [2, 4, 6]}, {group: '1', values: [1, 3, 5]}]2 1 4 3 5 6; // Will return ["even: 2,4,6", "odd: 1,3,5"]
.distinct
Description:
.distinct
selects distinct elements by using selector as a key or element if selector is not specified, and comparator (optional) to compare equality of keys
Arguments:
.distinct
may accept selector as a first argument and comparator as a second argument.
Returns:
Array of distinct elements.
Example of usage:
2 1 2 3 1 6 7 3 2; // will return [2, 1, 3, 6, 7]2 1 2 3 1 6 7 3 2; // will return [2, 1, 3]1 2 '2' '3' 3 4 5 8 5; // will return [1, 2, '2', '3', 3, 4, 5, 8] (default comparator is "a === b";1 2 '2' '3' 3 4 5 8 5; // will return [1, 2, '3', 4, 5, 8] (here we used custom comparator)
.firstOrDefault
Description:
.firstOrDefault
selects first element which matches predicate if there is not such element, then null
will be returned. If predicate is not specified then first element will be returned or null
if array is empty.
Arguments:
.firstOrDefault
may accept predicate.
Returns:
First element which matches predicate or null
if there is no such element. If predicate is not specified then first element will be returned or null
if array is empty.
Example of usage:
2 1 2 3 1 6 7 3 2; // will return 12 1 2 3 1 6 7 3 2 // will return 22 1 2 3 1 6 7 3 2 // will return null // will return null
.lastOrDefault
Description:
.lastOrDefault
selects last element which matches predicate if there is not such element, then null
will be returned. If predicate is not specified then last element will be returned or null
if array is empty.
Arguments:
.lastOrDefault
may accept predicate.
Returns:
Last element which matches predicate or null
if there is no such element. If predicate is not specified then last element will be returned or null
if array is empty.
Example of usage:
2 1 2 3 1 6 7 3 2; // will return 32 1 2 3 1 6 7 3 9 // will return 92 1 2 3 1 6 7 3 2 // will return null // will return null
.joinWith
Description:
.joinWith
combines two arrays based upon the inner key selector and outer key selector.
Arguments:
.joinWith
accepts following arguments (1-4 are mandatory, 5-th is optional):
- inner array to join with;
- inner key selector which will be applied to inner array elements;
- outer key selector which will be applied to outer array elements;
- result selector which should accept two arguments (inner element and outer element) and return result element;
- key comparator which implements comparation logic between inner key and outer key. (optional)
Returns:
Array of combined elements.
Example of usage:
1 2 8 2 6 3 9 2 4; // will return [1, 2, 2, 3, 2, 4]1 2 3; // will return ["41", "51", "61", "42", "52", "62", "43", "53", "63"]1 2 3; // will return [1, 2]1 2 3 // will return []
.groupJoinWith
Description:
.groupJoinWith
correlates the elements of two arrays based on equality of keys and groups the results.
Arguments:
.groupJoinWith
accepts following arguments (1-4 are mandatory, 5-th is optional):
- inner array to join with;
- inner key selector which will be applied to inner array elements;
- outer key selector which will be applied to outer array elements;
- result selector which should accept two arguments (array of matched inner element and outer element) and return result element;
- key comparator which implements comparation logic between inner key and outer key. (optional)
Returns:
Array of combined elements.
Example of usage:
1 2 3 4; // will return [[1, 1], [2, 2], [3, 3], []]1 2 3 4; // will return [1, 2, 3, 4]; // will return []
.contains
Description:
.contains
checks if passed value presents in array.
Arguments:
.contains
accepts value and may accept comparator as a second argument. If comparator is not passed then (a, b) => a === b
comparator will be used by default.
Returns:
true
if value presents in array; false
otherwise.
Example of usage:
1 2 3 4; // will return true1 2 3 4; // will return false1 2 3 4; // will return false, comparator is not passed, so === equality has been used.1 2 3 4; // will return true
.aggregate
Description:
.aggregate
applies an accumulator function over a sequence. It acts the same as Array.prototype.reduce
.
Arguments:
.aggregate
accepts accumulator function, which should accept two arguments: previous result and current element. Also may accept initial value as a second argument.
Returns:
Aggregated result.
Example of usage:
1 2 3 4; // will return 101 2 3 4; // will return 20 (because initial value is passed); // will return undefined; // will return 0
.sum
Description:
.sum
calculates total sum of elements using selector if specified.
Arguments:
.sum
may accept selector.
Returns:
Total sum.
Example of usage:
1 2 3 4; // will return 101 2 3 4; // will return 101 2 3 4; // will return 100
.min
Description:
.min
finds minimum value using selector if specified.
Arguments:
.min
may accept selector.
Returns:
Minimum value. Or undefined
if array is empty.
Example of usage:
"the quick brown fox jumps over the lazy dog"; // will return 3; // will return undefined9 5 1 9 3 5 6; // will return 1
.max
Description:
.max
finds maximum value using selector if specified.
Arguments:
.max
may accept selector.
Returns:
Maximum value. Or undefined
if array is empty.
Example of usage:
"the quick brown fox jumps over the lazy dog"; // will return 5; // will return undefined9 5 1 9 3 5 6; // will return 9
.skip
Description:
.skip
skips specified amount of elements.
Arguments:
.skip
accepts number of elements to skip.
Returns:
Array of elements after skipped elements.
Example of usage:
1 2 3 4; // will return [3, 4]1 2 3 4; // will return [1, 2, 3, 4]1 2 3 4; // will return []
.take
Description:
.take
takes specified amount of elements.
Arguments:
.take
accepts number of elements to take.
Returns:
Array of taken elements.
Example of usage:
1 2 3 4; // will return [1, 2]1 2 3 4; // will return []1 2 3 4; // will return [1, 2, 3, 4]
.ofType
Description:
.ofType
filter elements based on specified type. Basically it's a shortcut for .where(w => typeof(w) === specifiedType)
.
Arguments:
.ofType
accepts the type to filter the elements on.
Returns:
Array of elements of specified type.
Example of usage:
1 '2' '3' 4; // will return ['2', '3']1 '2' '3' 4; // will return [1, 4]1 '2' '3' 4; // will return [];
.union
Description:
.union
produces the set union of arrays by using the comparator (optional) to compare values.
Arguments:
.union
accepts array to combine and may accept comparator as a second argument.
Returns:
Array of merged elements from source arrays.
Example of usage:
1 2 3 4; // will return [1, 2, 3, 4, 5]1 2 3 4; // will return [1, 2, 3, 4]; // will return []1 2 3 4; // will return [1, 2, 3, 4, 5];
.except
Description:
.except
produces the set difference of two arrays by using the comparator (optional) to compare values.
Arguments:
.except
accepts array to compare and may accept comparator as a second argument.
Returns:
Array of differences of source arrays.
Example of usage:
1 2 3 4; // will return [1, 2]1 2 3 4; // will return [1, 2, 3, 4]1 2 3 4; // will return []1 2 3 4; // will return [1, 2]
Lazy array
By default all mini-linq methods will execute their logic instantly and return result. But in some cases it may be useful to postpone execution, until some conditions take place.
To do this with mini-linq it's necesasry to load mini-linq.lazy.js
module. After that it will be possible to use .toLazy()
to cast array to lazy array. .toLazy()
doesn't accept any argument and returns LazyArray
instance. LazyArray
has the same mini-linq methods as normal array with the exception that some of them are not executing instantly. To get final result array you have to use .toArray()
method. For example:
1 2 3 4; // will return LazyArray instance1 2 3 4; // will return LazyArray instance, .where is postponed, nothing executed.1 2 3 4; // will return [3, 4]
LazyArray has some optimization logic, to reduce amount of array traversals, for example:
1 2 3 4; // will merge two .where methods into one, then execute and return [2, 3] (with just one traversal)
Author
Alexander Kopachov (alex.kopachov@gmail.com)