|
1 | | -/* tslint:disable:max-file-line-count */ |
2 | | - |
3 | 1 | /* |
4 | 2 | * @license Apache-2.0 |
5 | 3 | * |
|
18 | 16 | * limitations under the License. |
19 | 17 | */ |
20 | 18 |
|
| 19 | +/* eslint-disable max-lines */ |
| 20 | + |
21 | 21 | // TypeScript Version: 4.1 |
22 | 22 |
|
23 | 23 | /** |
@@ -1060,7 +1060,7 @@ declare module '@stdlib/types/ndarray' { |
1060 | 1060 | * } |
1061 | 1061 | * }; |
1062 | 1062 | */ |
1063 | | - interface ndarray { // tslint:disable-line:class-name |
| 1063 | + interface ndarray { |
1064 | 1064 | /** |
1065 | 1065 | * Size (in bytes) of the array (if known). |
1066 | 1066 | */ |
@@ -1188,7 +1188,7 @@ declare module '@stdlib/types/ndarray' { |
1188 | 1188 | * } |
1189 | 1189 | * }; |
1190 | 1190 | */ |
1191 | | - interface genericndarray<T> extends ndarray { // tslint:disable-line:class-name |
| 1191 | + interface genericndarray<T> extends ndarray { |
1192 | 1192 | /** |
1193 | 1193 | * Size (in bytes) of the array. |
1194 | 1194 | */ |
@@ -1262,7 +1262,7 @@ declare module '@stdlib/types/ndarray' { |
1262 | 1262 | * } |
1263 | 1263 | * }; |
1264 | 1264 | */ |
1265 | | - interface typedndarray<T> extends ndarray { // tslint:disable-line:class-name |
| 1265 | + interface typedndarray<T> extends ndarray { |
1266 | 1266 | /** |
1267 | 1267 | * A reference to the underlying data buffer. |
1268 | 1268 | */ |
@@ -1321,7 +1321,7 @@ declare module '@stdlib/types/ndarray' { |
1321 | 1321 | * } |
1322 | 1322 | * }; |
1323 | 1323 | */ |
1324 | | - interface floatndarray extends typedndarray<number> { // tslint:disable-line:class-name |
| 1324 | + interface floatndarray extends typedndarray<number> { |
1325 | 1325 | /** |
1326 | 1326 | * Size (in bytes) of the array. |
1327 | 1327 | */ |
@@ -1383,7 +1383,7 @@ declare module '@stdlib/types/ndarray' { |
1383 | 1383 | * } |
1384 | 1384 | * }; |
1385 | 1385 | */ |
1386 | | - interface float64ndarray extends floatndarray { // tslint:disable-line:class-name |
| 1386 | + interface float64ndarray extends floatndarray { |
1387 | 1387 | /** |
1388 | 1388 | * Size (in bytes) of each array element. |
1389 | 1389 | */ |
@@ -1440,7 +1440,7 @@ declare module '@stdlib/types/ndarray' { |
1440 | 1440 | * } |
1441 | 1441 | * }; |
1442 | 1442 | */ |
1443 | | - interface float32ndarray extends floatndarray { // tslint:disable-line:class-name |
| 1443 | + interface float32ndarray extends floatndarray { |
1444 | 1444 | /** |
1445 | 1445 | * Size (in bytes) of each array element. |
1446 | 1446 | */ |
@@ -1497,7 +1497,7 @@ declare module '@stdlib/types/ndarray' { |
1497 | 1497 | * } |
1498 | 1498 | * }; |
1499 | 1499 | */ |
1500 | | - interface integerndarray extends typedndarray<number> { // tslint:disable-line:class-name |
| 1500 | + interface integerndarray extends typedndarray<number> { |
1501 | 1501 | /** |
1502 | 1502 | * Size (in bytes) of the array. |
1503 | 1503 | */ |
@@ -1559,7 +1559,7 @@ declare module '@stdlib/types/ndarray' { |
1559 | 1559 | * } |
1560 | 1560 | * }; |
1561 | 1561 | */ |
1562 | | - interface signedintegerndarray extends typedndarray<number> { // tslint:disable-line:class-name |
| 1562 | + interface signedintegerndarray extends typedndarray<number> { |
1563 | 1563 | /** |
1564 | 1564 | * Size (in bytes) of the array. |
1565 | 1565 | */ |
@@ -1621,7 +1621,7 @@ declare module '@stdlib/types/ndarray' { |
1621 | 1621 | * } |
1622 | 1622 | * }; |
1623 | 1623 | */ |
1624 | | - interface int32ndarray extends signedintegerndarray { // tslint:disable-line:class-name |
| 1624 | + interface int32ndarray extends signedintegerndarray { |
1625 | 1625 | /** |
1626 | 1626 | * Size (in bytes) of each array element. |
1627 | 1627 | */ |
@@ -1678,7 +1678,7 @@ declare module '@stdlib/types/ndarray' { |
1678 | 1678 | * } |
1679 | 1679 | * }; |
1680 | 1680 | */ |
1681 | | - interface int16ndarray extends signedintegerndarray { // tslint:disable-line:class-name |
| 1681 | + interface int16ndarray extends signedintegerndarray { |
1682 | 1682 | /** |
1683 | 1683 | * Size (in bytes) of each array element. |
1684 | 1684 | */ |
@@ -1735,7 +1735,7 @@ declare module '@stdlib/types/ndarray' { |
1735 | 1735 | * } |
1736 | 1736 | * }; |
1737 | 1737 | */ |
1738 | | - interface int8ndarray extends signedintegerndarray { // tslint:disable-line:class-name |
| 1738 | + interface int8ndarray extends signedintegerndarray { |
1739 | 1739 | /** |
1740 | 1740 | * Size (in bytes) of each array element. |
1741 | 1741 | */ |
@@ -1792,7 +1792,7 @@ declare module '@stdlib/types/ndarray' { |
1792 | 1792 | * } |
1793 | 1793 | * }; |
1794 | 1794 | */ |
1795 | | - interface unsignedintegerndarray extends typedndarray<number> { // tslint:disable-line:class-name |
| 1795 | + interface unsignedintegerndarray extends typedndarray<number> { |
1796 | 1796 | /** |
1797 | 1797 | * Size (in bytes) of the array. |
1798 | 1798 | */ |
@@ -1854,7 +1854,7 @@ declare module '@stdlib/types/ndarray' { |
1854 | 1854 | * } |
1855 | 1855 | * }; |
1856 | 1856 | */ |
1857 | | - interface uint32ndarray extends unsignedintegerndarray { // tslint:disable-line:class-name |
| 1857 | + interface uint32ndarray extends unsignedintegerndarray { |
1858 | 1858 | /** |
1859 | 1859 | * Size (in bytes) of each array element. |
1860 | 1860 | */ |
@@ -1911,7 +1911,7 @@ declare module '@stdlib/types/ndarray' { |
1911 | 1911 | * } |
1912 | 1912 | * }; |
1913 | 1913 | */ |
1914 | | - interface uint16ndarray extends unsignedintegerndarray { // tslint:disable-line:class-name |
| 1914 | + interface uint16ndarray extends unsignedintegerndarray { |
1915 | 1915 | /** |
1916 | 1916 | * Size (in bytes) of each array element. |
1917 | 1917 | */ |
@@ -1968,7 +1968,7 @@ declare module '@stdlib/types/ndarray' { |
1968 | 1968 | * } |
1969 | 1969 | * }; |
1970 | 1970 | */ |
1971 | | - interface uint8ndarray extends unsignedintegerndarray { // tslint:disable-line:class-name |
| 1971 | + interface uint8ndarray extends unsignedintegerndarray { |
1972 | 1972 | /** |
1973 | 1973 | * Size (in bytes) of each array element. |
1974 | 1974 | */ |
@@ -2025,7 +2025,7 @@ declare module '@stdlib/types/ndarray' { |
2025 | 2025 | * } |
2026 | 2026 | * }; |
2027 | 2027 | */ |
2028 | | - interface uint8cndarray extends unsignedintegerndarray { // tslint:disable-line:class-name |
| 2028 | + interface uint8cndarray extends unsignedintegerndarray { |
2029 | 2029 | /** |
2030 | 2030 | * Size (in bytes) of each array element. |
2031 | 2031 | */ |
@@ -2082,7 +2082,7 @@ declare module '@stdlib/types/ndarray' { |
2082 | 2082 | * } |
2083 | 2083 | * }; |
2084 | 2084 | */ |
2085 | | - interface realndarray extends typedndarray<number> { // tslint:disable-line:class-name |
| 2085 | + interface realndarray extends typedndarray<number> { |
2086 | 2086 | /** |
2087 | 2087 | * Size (in bytes) of the array. |
2088 | 2088 | */ |
@@ -2144,7 +2144,7 @@ declare module '@stdlib/types/ndarray' { |
2144 | 2144 | * } |
2145 | 2145 | * }; |
2146 | 2146 | */ |
2147 | | - interface realcomplexndarray extends ndarray { // tslint:disable-line:class-name |
| 2147 | + interface realcomplexndarray extends ndarray { |
2148 | 2148 | /** |
2149 | 2149 | * Size (in bytes) of the array. |
2150 | 2150 | */ |
@@ -2218,7 +2218,7 @@ declare module '@stdlib/types/ndarray' { |
2218 | 2218 | * } |
2219 | 2219 | * }; |
2220 | 2220 | */ |
2221 | | - interface floatcomplexndarray extends ndarray { // tslint:disable-line:class-name |
| 2221 | + interface floatcomplexndarray extends ndarray { |
2222 | 2222 | /** |
2223 | 2223 | * Size (in bytes) of the array. |
2224 | 2224 | */ |
@@ -2292,7 +2292,7 @@ declare module '@stdlib/types/ndarray' { |
2292 | 2292 | * } |
2293 | 2293 | * }; |
2294 | 2294 | */ |
2295 | | - interface complexndarray extends ndarray { // tslint:disable-line:class-name |
| 2295 | + interface complexndarray extends ndarray { |
2296 | 2296 | /** |
2297 | 2297 | * Size (in bytes) of the array. |
2298 | 2298 | */ |
@@ -2366,7 +2366,7 @@ declare module '@stdlib/types/ndarray' { |
2366 | 2366 | * } |
2367 | 2367 | * }; |
2368 | 2368 | */ |
2369 | | - interface complex128ndarray extends complexndarray { // tslint:disable-line:class-name |
| 2369 | + interface complex128ndarray extends complexndarray { |
2370 | 2370 | /** |
2371 | 2371 | * Size (in bytes) of each array element. |
2372 | 2372 | */ |
@@ -2435,7 +2435,7 @@ declare module '@stdlib/types/ndarray' { |
2435 | 2435 | * } |
2436 | 2436 | * }; |
2437 | 2437 | */ |
2438 | | - interface complex64ndarray extends complexndarray { // tslint:disable-line:class-name |
| 2438 | + interface complex64ndarray extends complexndarray { |
2439 | 2439 | /** |
2440 | 2440 | * Size (in bytes) of each array element. |
2441 | 2441 | */ |
@@ -2513,12 +2513,12 @@ declare module '@stdlib/types/ndarray' { |
2513 | 2513 | /** |
2514 | 2514 | * Array shape. |
2515 | 2515 | */ |
2516 | | - shape: [ number ]; // tslint:disable-line:no-single-element-tuple-type |
| 2516 | + shape: [ number ]; |
2517 | 2517 |
|
2518 | 2518 | /** |
2519 | 2519 | * Array strides. |
2520 | 2520 | */ |
2521 | | - strides: [ number ]; // tslint:disable-line:no-single-element-tuple-type |
| 2521 | + strides: [ number ]; |
2522 | 2522 |
|
2523 | 2523 | /** |
2524 | 2524 | * Sets an array element specified according to provided subscripts. |
|
0 commit comments