Skip to content

Commit e6d9266

Browse files
committed
feat: add C implementation of stdlib/math/base/special/minn
--- 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 456053e commit e6d9266

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

lib/node_modules/@stdlib/math/base/special/minn/manifest.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@
5656
],
5757
"libraries": [],
5858
"libpath": [],
59-
"dependencies": []
59+
"dependencies": [
60+
"@stdlib/math/base/assert/is-nan",
61+
"@stdlib/math/base/assert/is-negative-zero",
62+
"@stdlib/constants/float64/ninf",
63+
"@stdlib/constants/float64/pinf"
64+
]
6065
},
6166
{
6267
"task": "examples",
@@ -68,7 +73,12 @@
6873
],
6974
"libraries": [],
7075
"libpath": [],
71-
"dependencies": []
76+
"dependencies": [
77+
"@stdlib/math/base/assert/is-nan",
78+
"@stdlib/math/base/assert/is-negative-zero",
79+
"@stdlib/constants/float64/ninf",
80+
"@stdlib/constants/float64/pinf"
81+
]
7282
}
7383
]
7484
}

0 commit comments

Comments
 (0)