intersection

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
3 KB
Combines two lists into a set (i.e. no duplicates) composed of those elements common to both lists.
1 contributor
Install intersection as a package?
Copied
npm i @bit/justin-capalbo.ramda.intersection
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
intersection (
list1:Array,
list2:Array
) : Array

Combines two lists into a set (i.e. no duplicates) composed of those elements common to both lists.

Example
R.intersection([1,2,3,4], [7,6,5,4,3]); //=> [4, 3]
Arguments
list1: Array

The first list.

list2: Array

The second list.

Returns
Array

The list of elements found in both `list1` and `list2`.

Help and resources