@@ -244,7 +244,7 @@ interface OptionsWithDType extends Options {
244
244
* sh = y.shape;
245
245
* // returns [ 2, 2 ]
246
246
*
247
- * dt = x .dtype;
247
+ * dt = y .dtype;
248
248
* // returns 'float64'
249
249
*/
250
250
declare function zerosLike ( x : float64ndarray , options ?: Options ) : float64ndarray ; // tslint:disable-line:max-line-length
@@ -278,7 +278,7 @@ declare function zerosLike( x: float64ndarray, options?: Options ): float64ndarr
278
278
* sh = y.shape;
279
279
* // returns [ 2, 2 ]
280
280
*
281
- * dt = x .dtype;
281
+ * dt = y .dtype;
282
282
* // returns 'float32'
283
283
*/
284
284
declare function zerosLike ( x : float32ndarray , options ?: Options ) : float32ndarray ; // tslint:disable-line:max-line-length
@@ -312,7 +312,7 @@ declare function zerosLike( x: float32ndarray, options?: Options ): float32ndarr
312
312
* sh = y.shape;
313
313
* // returns [ 2, 2 ]
314
314
*
315
- * dt = x .dtype;
315
+ * dt = y .dtype;
316
316
* // returns 'complex128'
317
317
*/
318
318
declare function zerosLike ( x : complex128ndarray , options ?: Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
@@ -346,7 +346,7 @@ declare function zerosLike( x: complex128ndarray, options?: Options ): complex12
346
346
* sh = y.shape;
347
347
* // returns [ 2, 2 ]
348
348
*
349
- * dt = x .dtype;
349
+ * dt = y .dtype;
350
350
* // returns 'complex64'
351
351
*/
352
352
declare function zerosLike ( x : complex64ndarray , options ?: Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
@@ -380,7 +380,7 @@ declare function zerosLike( x: complex64ndarray, options?: Options ): complex64n
380
380
* sh = y.shape;
381
381
* // returns [ 2, 2 ]
382
382
*
383
- * dt = x .dtype;
383
+ * dt = y .dtype;
384
384
* // returns 'int32'
385
385
*/
386
386
declare function zerosLike ( x : int32ndarray , options ?: Options ) : int32ndarray ;
@@ -414,7 +414,7 @@ declare function zerosLike( x: int32ndarray, options?: Options ): int32ndarray;
414
414
* sh = y.shape;
415
415
* // returns [ 2, 2 ]
416
416
*
417
- * dt = x .dtype;
417
+ * dt = y .dtype;
418
418
* // returns 'int16'
419
419
*/
420
420
declare function zerosLike ( x : int16ndarray , options ?: Options ) : int16ndarray ;
@@ -448,7 +448,7 @@ declare function zerosLike( x: int16ndarray, options?: Options ): int16ndarray;
448
448
* sh = y.shape;
449
449
* // returns [ 2, 2 ]
450
450
*
451
- * dt = x .dtype;
451
+ * dt = y .dtype;
452
452
* // returns 'int8'
453
453
*/
454
454
declare function zerosLike ( x : int8ndarray , options ?: Options ) : int8ndarray ;
@@ -482,7 +482,7 @@ declare function zerosLike( x: int8ndarray, options?: Options ): int8ndarray;
482
482
* sh = y.shape;
483
483
* // returns [ 2, 2 ]
484
484
*
485
- * dt = x .dtype;
485
+ * dt = y .dtype;
486
486
* // returns 'uint32'
487
487
*/
488
488
declare function zerosLike ( x : uint32ndarray , options ?: Options ) : uint32ndarray ; // tslint:disable-line:max-line-length
@@ -516,7 +516,7 @@ declare function zerosLike( x: uint32ndarray, options?: Options ): uint32ndarray
516
516
* sh = y.shape;
517
517
* // returns [ 2, 2 ]
518
518
*
519
- * dt = x .dtype;
519
+ * dt = y .dtype;
520
520
* // returns 'uint16'
521
521
*/
522
522
declare function zerosLike ( x : uint16ndarray , options ?: Options ) : uint16ndarray ; // tslint:disable-line:max-line-length
@@ -550,7 +550,7 @@ declare function zerosLike( x: uint16ndarray, options?: Options ): uint16ndarray
550
550
* sh = y.shape;
551
551
* // returns [ 2, 2 ]
552
552
*
553
- * dt = x .dtype;
553
+ * dt = y .dtype;
554
554
* // returns 'uint8'
555
555
*/
556
556
declare function zerosLike ( x : uint8ndarray , options ?: Options ) : uint8ndarray ;
@@ -584,7 +584,7 @@ declare function zerosLike( x: uint8ndarray, options?: Options ): uint8ndarray;
584
584
* sh = y.shape;
585
585
* // returns [ 2, 2 ]
586
586
*
587
- * dt = x .dtype;
587
+ * dt = y .dtype;
588
588
* // returns 'uint8c'
589
589
*/
590
590
declare function zerosLike ( x : uint8cndarray , options ?: Options ) : uint8cndarray ; // tslint:disable-line:max-line-length
@@ -621,7 +621,7 @@ declare function zerosLike( x: uint8cndarray, options?: Options ): uint8cndarray
621
621
* sh = y.shape;
622
622
* // returns [ 2, 2 ]
623
623
*
624
- * dt = x .dtype;
624
+ * dt = y .dtype;
625
625
* // returns 'float64'
626
626
*/
627
627
declare function zerosLike ( x : ndarray , options : Float64Options ) : float64ndarray ; // tslint:disable-line:max-line-length
@@ -658,7 +658,7 @@ declare function zerosLike( x: ndarray, options: Float64Options ): float64ndarra
658
658
* sh = y.shape;
659
659
* // returns [ 2, 2 ]
660
660
*
661
- * dt = x .dtype;
661
+ * dt = y .dtype;
662
662
* // returns 'float32'
663
663
*/
664
664
declare function zerosLike ( x : ndarray , options : Float32Options ) : float32ndarray ; // tslint:disable-line:max-line-length
@@ -695,7 +695,7 @@ declare function zerosLike( x: ndarray, options: Float32Options ): float32ndarra
695
695
* sh = y.shape;
696
696
* // returns [ 2, 2 ]
697
697
*
698
- * dt = x .dtype;
698
+ * dt = y .dtype;
699
699
* // returns 'complex128'
700
700
*/
701
701
declare function zerosLike ( x : ndarray , options : Complex128Options ) : complex128ndarray ; // tslint:disable-line:max-line-length
@@ -732,7 +732,7 @@ declare function zerosLike( x: ndarray, options: Complex128Options ): complex128
732
732
* sh = y.shape;
733
733
* // returns [ 2, 2 ]
734
734
*
735
- * dt = x .dtype;
735
+ * dt = y .dtype;
736
736
* // returns 'complex64'
737
737
*/
738
738
declare function zerosLike ( x : ndarray , options : Complex64Options ) : complex64ndarray ; // tslint:disable-line:max-line-length
@@ -769,7 +769,7 @@ declare function zerosLike( x: ndarray, options: Complex64Options ): complex64nd
769
769
* sh = y.shape;
770
770
* // returns [ 2, 2 ]
771
771
*
772
- * dt = x .dtype;
772
+ * dt = y .dtype;
773
773
* // returns 'int32'
774
774
*/
775
775
declare function zerosLike ( x : ndarray , options : Int32Options ) : int32ndarray ;
@@ -806,7 +806,7 @@ declare function zerosLike( x: ndarray, options: Int32Options ): int32ndarray;
806
806
* sh = y.shape;
807
807
* // returns [ 2, 2 ]
808
808
*
809
- * dt = x .dtype;
809
+ * dt = y .dtype;
810
810
* // returns 'int16'
811
811
*/
812
812
declare function zerosLike ( x : ndarray , options : Int16Options ) : int16ndarray ;
@@ -843,7 +843,7 @@ declare function zerosLike( x: ndarray, options: Int16Options ): int16ndarray;
843
843
* sh = y.shape;
844
844
* // returns [ 2, 2 ]
845
845
*
846
- * dt = x .dtype;
846
+ * dt = y .dtype;
847
847
* // returns 'int8'
848
848
*/
849
849
declare function zerosLike ( x : ndarray , options : Int8Options ) : int8ndarray ;
@@ -880,7 +880,7 @@ declare function zerosLike( x: ndarray, options: Int8Options ): int8ndarray;
880
880
* sh = y.shape;
881
881
* // returns [ 2, 2 ]
882
882
*
883
- * dt = x .dtype;
883
+ * dt = y .dtype;
884
884
* // returns 'uint32'
885
885
*/
886
886
declare function zerosLike ( x : ndarray , options : Uint32Options ) : uint32ndarray ;
@@ -917,7 +917,7 @@ declare function zerosLike( x: ndarray, options: Uint32Options ): uint32ndarray;
917
917
* sh = y.shape;
918
918
* // returns [ 2, 2 ]
919
919
*
920
- * dt = x .dtype;
920
+ * dt = y .dtype;
921
921
* // returns 'uint16'
922
922
*/
923
923
declare function zerosLike ( x : ndarray , options : Uint16Options ) : uint16ndarray ;
@@ -954,7 +954,7 @@ declare function zerosLike( x: ndarray, options: Uint16Options ): uint16ndarray;
954
954
* sh = y.shape;
955
955
* // returns [ 2, 2 ]
956
956
*
957
- * dt = x .dtype;
957
+ * dt = y .dtype;
958
958
* // returns 'uint8'
959
959
*/
960
960
declare function zerosLike ( x : ndarray , options : Uint8Options ) : uint8ndarray ;
@@ -991,7 +991,7 @@ declare function zerosLike( x: ndarray, options: Uint8Options ): uint8ndarray;
991
991
* sh = y.shape;
992
992
* // returns [ 2, 2 ]
993
993
*
994
- * dt = x .dtype;
994
+ * dt = y .dtype;
995
995
* // returns 'uint8c'
996
996
*/
997
997
declare function zerosLike ( x : ndarray , options : Uint8COptions ) : uint8cndarray ;
@@ -1026,7 +1026,7 @@ declare function zerosLike( x: ndarray, options: Uint8COptions ): uint8cndarray;
1026
1026
* sh = y.shape;
1027
1027
* // returns [ 2, 2 ]
1028
1028
*
1029
- * dt = x .dtype;
1029
+ * dt = y .dtype;
1030
1030
* // returns 'generic'
1031
1031
*/
1032
1032
declare function zerosLike ( x : ndarray , options ?: Options | OptionsWithDType ) : typedndarray < number > ; // tslint:disable-line:max-line-length
0 commit comments