Skip to content

zip3

Summary

Same as zip but with three arrays.

Tip

This function is curried.

Examples

1
2
zip3([1, 2], [10, 20], [100, 200]);
//=> [[1, 10, 100], [2, 20, 200]]

Parameters

Name Type Description
a Array
b Array
c Array

Return

Array.<Array>

AltStyle によって変換されたページ (->オリジナル) /