From 959391da75a2f9dbc9a1b6d6a9b33ad00a187ef2 Mon Sep 17 00:00:00 2001 From: Manvith <148960168+manvith2003@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:54:37 +0530 Subject: [PATCH] chore: add structured package data for math/base/special/negalucasf --- 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: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../math/base/special/negalucasf/package.json | 78 ++++++++++++++++++- 1 file changed, 77 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/negalucasf/package.json b/lib/node_modules/@stdlib/math/base/special/negalucasf/package.json index 7aadfe12f17b..c818d27b039a 100644 --- a/lib/node_modules/@stdlib/math/base/special/negalucasf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/negalucasf/package.json @@ -66,5 +66,81 @@ "fibo", "nlucas", "number" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "negalucas", + "alias": "negalucasf", + "pkg_desc": "compute the nth negaLucas number in single-precision floating-point format", + "desc": "computes the nth negaLucas number in single-precision floating-point format", + "short_desc": "negaLucas number", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": 0 + } + ], + "rand": { + "prng": "random/base/discrete-uniform", + "parameters": [ + -100, + 0 + ] + }, + "example_values": [ + 0, + -1, + -2, + -3, + -4, + -5, + -6, + -7, + -8, + -9, + -10, + -15, + -20, + -25, + -30, + -40, + -50, + -60, + -70, + -76 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "negaLucas number", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "lucas", + "negalucas", + "fibonacci", + "fib", + "fibo", + "nlucas" + ], + "extra_keywords": [] + } + } }