diff --git a/lib/node_modules/@stdlib/math/base/special/spencef/package.json b/lib/node_modules/@stdlib/math/base/special/spencef/package.json index 60c9ec82520a..0fc99528d57f 100644 --- a/lib/node_modules/@stdlib/math/base/special/spencef/package.json +++ b/lib/node_modules/@stdlib/math/base/special/spencef/package.json @@ -63,7 +63,82 @@ "polylogarithm", "integral", "spence", - "spencef", "number" - ] + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "spence", + "alias": "spencef", + "pkg_desc": "evaluate Spence's function (the dilogarithm) for a single-precision floating-point number", + "desc": "evaluates Spence's function (the dilogarithm) for a single-precision floating-point number.", + "short_desc": "Spence's function", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": 0, + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0, + 10 + ] + }, + "example_values": [ + 0, + 0.5, + 1, + 2, + 3, + 5, + 10, + 25, + 50, + 100, + 0.1, + 0.2, + 0.3, + 0.4, + 0.6, + 0.7, + 0.8, + 0.9, + 1.5, + 4 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "function value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "special", + "function", + "dilogarithm", + "polylogarithm", + "integral", + "spence" + ], + "extra_keywords": [] + } + } }