main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
692 bytes
|
Line | |
---|
1 | import _concat from "./internal/_concat.js";
|
---|
2 | import _curry2 from "./internal/_curry2.js";
|
---|
3 | import compose from "./compose.js";
|
---|
4 | import uniq from "./uniq.js";
|
---|
5 | /**
|
---|
6 | * Combines two lists into a set (i.e. no duplicates) composed of the elements
|
---|
7 | * of each list.
|
---|
8 | *
|
---|
9 | * @func
|
---|
10 | * @memberOf R
|
---|
11 | * @since v0.1.0
|
---|
12 | * @category Relation
|
---|
13 | * @sig [*] -> [*] -> [*]
|
---|
14 | * @param {Array} as The first list.
|
---|
15 | * @param {Array} bs The second list.
|
---|
16 | * @return {Array} The first and second lists concatenated, with
|
---|
17 | * duplicates removed.
|
---|
18 | * @example
|
---|
19 | *
|
---|
20 | * R.union([1, 2, 3], [2, 3, 4]); //=> [1, 2, 3, 4]
|
---|
21 | */
|
---|
22 |
|
---|
23 | var union =
|
---|
24 | /*#__PURE__*/
|
---|
25 | _curry2(
|
---|
26 | /*#__PURE__*/
|
---|
27 | compose(uniq, _concat));
|
---|
28 |
|
---|
29 | export default union; |
---|
Note:
See
TracBrowser
for help on using the repository browser.