From b211d5b200f62888c5e41bfd25a355195351c25c Mon Sep 17 00:00:00 2001 From: ShabiShett07 Date: Sun, 20 Apr 2025 12:09:45 +0530 Subject: [PATCH] feat: add jsdoc for striding in blas/base/dtrsv --- 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: passed - 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 --- --- lib/node_modules/@stdlib/blas/base/dtrsv/lib/ndarray.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/blas/base/dtrsv/lib/ndarray.js b/lib/node_modules/@stdlib/blas/base/dtrsv/lib/ndarray.js index 7199372ef4ba..6651f15baa51 100644 --- a/lib/node_modules/@stdlib/blas/base/dtrsv/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dtrsv/lib/ndarray.js @@ -47,6 +47,8 @@ var base = require( './base.js' ); * @throws {TypeError} second argument must be a valid transpose operation * @throws {TypeError} third argument must be a valid diagonal type * @throws {RangeError} fourth argument must be a nonnegative integer +* @throws {RangeError} sixth argument must be non-zero +* @throws {RangeError} seventh argument must be non-zero * @throws {RangeError} tenth argument must be non-zero * @returns {Float64Array} `x` *