xprod

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
850 B
Creates a new list out of the two supplied by creating each possible pair from the lists.
1 contributor
Install xprod as a package?
Copied
npm i @bit/justin-capalbo.ramda.xprod
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
xprod (
as:Array,
bs:Array
) : Array

Creates a new list out of the two supplied by creating each possible pair from the lists.

Example
R.xprod([1, 2], ['a', 'b']); //=> [[1, 'a'], [1, 'b'], [2, 'a'], [2, 'b']]
Arguments
as: Array

The first list.

bs: Array

The second list.

Returns
Array

The list made by combining each possible pair from `as` and `bs` into pairs (`[a, b]`).

Help and resources