Zip and Unzip Transposition
This package provides zip, unzip, and "polymorphic" versions of these operators.
Zip is a function that accepts any number of arrays and returns an array of the
respective values from each of the given arrays.
var unzip = require("pop-zip/zip");
expect(zip(
['a', 'b', 'c'],
[1, 2, 3],
['x', 'y', 'z']
)).toEqual([
['a', 1, 'x'],
['b', 2, 'y'],
['c', 3, 'z']
]);
Unzip is identical but accepts an array of arrays.
Unzip is behaviorally identical to a matrix transpose for matricies modeled as
nested arrays.
var unzip = require("pop-zip/unzip");
expect(unzip(
['a', 'b', 'c'],
[1, 2, 3],
['x', 'y', 'z']
)).toEqual([
['a', 1, 'x'],
['b', 2, 'y'],
['c', 3, 'z']
]);
Polymorphic operator
A well-planned system of objects is beautiful: a system where every meaningful
method for an object has been anticipated in the design.
Inevitably, another layer of architecture introduces a new concept and with it
the temptation to monkey-patch, dunk-punch, or otherwise cover-up the omission.
But reaching backward in time, up through the layers of architecture doesn't
always compose well, when different levels introduce concepts of the same name
but distinct behavior.
A polymorphic operator is a function that accepts as its first argument an
object and varies its behavior depending on its type.
Such an operator has the benefit of covering for the types from higher layers of
architecture, but defers to the eponymous method name of types yet to be
defined.
This package also exports polymorphic versions of zip and unzip, on the
off-chance you may be working with an array or some more sophisticated
collection.
Other collection objects are expected to implement toArray
, and both zip and
unzip will use these methods to funnel the resulting object array of arrays into
the non-polymorphic unzip.
License and Copyright
Copyright (c) 2015 by Kristopher Michael Kowal and contributors.
All rights reserved.
MIT License.