@@ -333,8 +333,8 @@ interface Routine extends ModuleWrapper {
333
333
*
334
334
* // Perform operation:
335
335
* cswap.main( x.length, x, 1, y, 1 );
336
- * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
337
- * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
336
+ * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
337
+ * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
338
338
*/
339
339
main ( N : number , x : Complex64Array , strideX : number , y : Complex64Array , strideY : number ) : Complex64Array ;
340
340
@@ -358,8 +358,8 @@ interface Routine extends ModuleWrapper {
358
358
*
359
359
* // Perform operation:
360
360
* cswap.ndarray( x.length, x, 1, 0, y, 1, 0 );
361
- * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
362
- * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
361
+ * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
362
+ * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
363
363
*/
364
364
ndarray ( N : number , x : Complex64Array , strideX : number , offsetX : number , y : Complex64Array , strideY : number , offsetY : number ) : Complex64Array ;
365
365
@@ -450,8 +450,8 @@ interface Routine extends ModuleWrapper {
450
450
*
451
451
* // Perform operation:
452
452
* cswap.main( x.length, x, -1, y, 1 );
453
- * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
454
- * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
453
+ * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
454
+ * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
455
455
*
456
456
* @example
457
457
* var Complex64Array = require( '@stdlib/array/complex64' );
@@ -461,8 +461,8 @@ interface Routine extends ModuleWrapper {
461
461
*
462
462
* // Perform operation:
463
463
* cswap.ndarray( x.length, x, 1, 0, y, 1, 0 );
464
- * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ];
465
- * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
464
+ * // x => <Complex64Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
465
+ * // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
466
466
*/
467
467
declare var cswap : Routine ;
468
468
0 commit comments