It would be really useful to support the standard permutation/combination functions on arrays. Something like: ``` _.permutations([0, 1], ['a', 'b']) => [ [0, 'a'], [0, 'b'], [1, 'a'], [1, 'b'] ]; ``` ``` _.combinations([1, 2, 3, 4], 2) => [ [1, 2], [1, 3], [1, 4], [2, 3], [2, 4], [3, 4] ]; ``` These additions have already (and I think unfortunately) been rejected from lodash proper: https://github.com/lodash/lodash/issues/1191 https://github.com/lodash/lodash/issues/1032 I very frequently find the need for them, so I think they belong in `lodash-contrib`. Thanks!