Skip to content

Commit 59de9af

Browse files
committed
feat: add MatrixOrientation type definition
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e01e9d8 commit 59de9af

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/node_modules/@stdlib/types/index.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,16 @@ declare module '@stdlib/types/blas' {
13391339
*/
13401340
type Layout = 'row-major' | 'column-major';
13411341

1342+
/**
1343+
* Matrix orientation.
1344+
*
1345+
* ## Notes
1346+
*
1347+
* - **rows**: data is stored along matrix rows.
1348+
* - **columns**: data is stored along matrix columns.
1349+
*/
1350+
type MatrixOrientation = 'rows' | 'columns';
1351+
13421352
/**
13431353
* Matrix triangle.
13441354
*

0 commit comments

Comments
 (0)