
{{alias}}( N, x, strideX, y, strideY )
    Interchanges two double-precision complex floating-point vectors.

    The `N` and stride parameters determine how values from `x` are
    swapped with values from `y`.

    Indexing is relative to the first index. To introduce an offset, use typed
    array views.

    If `N` is less than or equal to `0`, the vectors are unchanged.

    Parameters
    ----------
    N: integer
        Number of indexed elements.

    x: Complex128Array
        First input array.

    strideX: integer
        Index increment for `x`.

    y: Complex128Array
        Second input array.

    strideY: integer
        Index increment for `y`.

    Returns
    -------
    y: Complex128Array
        Input array `y`.

    Examples
    --------
    // Standard usage:
    > var x = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0 ] );
    > var y = new {{alias:@stdlib/array/complex128}}( [ 6.0, 7.0, 8.0, 9.0 ] );
    > {{alias}}( x.length, x, 1, y, 1 );
    > x
    <Complex128Array>[ 6.0, 7.0, 8.0, 9.0 ]
    > y
    <Complex128Array>[ 1.0, 2.0, 3.0, 4.0 ]

    // Advanced indexing:
    > x = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
    > y = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
    > {{alias}}( 2, x, -2, y, 1 );
    > x
    <Complex128Array>[ 0.0, 0.0, 3.0, 4.0, 0.0, 0.0 ]
    > y
    <Complex128Array>[ 5.0, 6.0, 1.0, 2.0, 0.0, 0.0 ]

    // Using typed array views:
    > var x0 = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0 ] );
    > var y0 = new Complex128Array( [ 0.0, 0.0, 0.0, 0.0 ] );
    > var x1 = new Complex128Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
    > var y1 = new Complex128Array( y0.buffer, y0.BYTES_PER_ELEMENT*1 );
    > {{alias}}( 1, x1, -1, y1, 1 );
    > x0
    <Complex128Array>[ 1.0, 2.0, 0.0, 0.0 ]
    > y0
    <Complex128Array>[ 0.0, 0.0, 3.0, 4.0 ]


{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
    Interchanges two double-precision complex floating-point vectors using
    alternative indexing semantics.

    While typed array views mandate a view offset based on the underlying
    buffer, the offset parameters support indexing semantics based on
    starting indices.

    Parameters
    ----------
    N: integer
        Number of indexed elements.

    x: Complex128Array
        First input array.

    strideX: integer
        Index increment for `x`.

    offsetX: integer
        Starting index for `x`.

    y: Complex128Array
        Second input array.

    strideY: integer
        Index increment for `y`.

    offsetY: integer
        Starting index for `y`.

    Returns
    -------
    y: Complex128Array
        Input array `y`.

    Examples
    --------
    // Standard usage:
    > var x = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0 ] );
    > var y = new {{alias:@stdlib/array/complex128}}( [ 6.0, 7.0, 8.0, 9.0 ] );
    > {{alias}}.ndarray( x.length, x, 1, 0, y, 1, 0 );
    > x
    <Complex128Array>[ 6.0, 7.0, 8.0, 9.0 ]
    > y
    <Complex128Array>[ 1.0, 2.0, 3.0, 4.0 ]

    // Advanced indexing:
    > x = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
    > y = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
    > {{alias}}.ndarray( 2, x, 2, 1, y, -1, y.length-1 );
    > x
    <Complex128Array>[ 1.0, 2.0, 0.0, 0.0, 5.0, 6.0, 0.0, 0.0 ]
    > y
    <Complex128Array>[ 0.0, 0.0, 0.0, 0.0, 7.0, 8.0, 3.0, 4.0 ]

    See Also
    --------

