
{{alias}}( arr, fields )
    Converts each nested array to an object.

    The function assumes that all nested arrays have the same length.

    The number of provided array labels should equal the length of each nested
    array.

    Parameters
    ----------
    arr: ArrayLikeObject<ArrayLikeObject>
        Input array containing nested arrays.

    fields: ArrayLikeObject
        List of field names.

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

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

    See Also
    --------

