-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorderUsing.ts
36 lines (34 loc) · 1.1 KB
/
orderUsing.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* @author electricessence / https://github.com/electricessence/
* @license MIT
*/
import {Comparison} from '@tsdotnet/compare/dist/Comparable';
import Order from '@tsdotnet/compare/dist/Order';
import ArgumentNullException from '@tsdotnet/exceptions/dist/ArgumentNullException';
import {IterableFilter} from '../IterableTransform';
import toArray from '../resolutions/toArray';
/**
* An iterable filter that orders elements by use of a comparison function.
* @param {Comparison<T>} comparison The function to decide if elements are greater, lesser or equal.
* @param {Order} order Default is ascending.
* @return {IterableFilter<T>}
*/
export default function orderUsing<T> (
comparison: Comparison<T>,
order: Order = Order.Ascending): IterableFilter<T> {
if(!comparison) throw new ArgumentNullException('comparison');
return function(sequence: Iterable<T>): Iterable<T> {
return {
* [Symbol.iterator] (): Iterator<T>
{
for(const e of
toArray(sequence).sort(order==Order.Descending
? ((a, b): number => comparison(a, b)* -1)
: comparison))
{
yield e;
}
}
};
};
}