
{{alias}}( arrays, labels )
    Zips one or more arrays to an array of objects.

    The function assumes that the list of arrays to be zipped all have the same
    length.

    The number of provided array labels should equal the number of arrays to be
    zipped.

    Parameters
    ----------
    arrays: ArrayLikeObject<ArrayLikeObject>
        List of arrays to zip.

    labels: ArrayLikeObject
        List of array labels.

    Returns
    -------
    out: Array<Object>
        Output array.

    Examples
    --------
    > var x = [ 1, 2 ];
    > var y = [ 3, 4 ];
    > var labels = [ 'x', 'y' ];
    > var out = {{alias}}( [ x, y ], labels )
    [ { 'x': 1, 'y': 3 }, { 'x': 2, 'y': 4 } ]

    See Also
    --------

