
{{alias}}( x, y, indices )
    Takes elements from two indexed arrays in a single pass.

    If `indices` is an empty array, the function returns empty arrays.

    The function does *not* perform bounds checking. If an index is less than
    zero or greater than the maximum index of `x` or `y`, the value of the
    corresponding element in the respective output array is undefined.

    Parameters
    ----------
    x: ArrayLikeObject
        First input array.

    y: ArrayLikeObject
        Second input array.

    indices: ArrayLikeObject<integer>
        List of element indices.

    Returns
    -------
    out: Array<Array>
        Output arrays.

    Examples
    --------
    > var x = [ 1, 2, 3, 4 ];
    > var y = [ 5, 6, 7, 8 ];
    > var out = {{alias}}( x, y, [ 1, 3 ] )
    [ [ 2, 4 ], [ 6, 8 ] ]

    See Also
    --------

