File tree Expand file tree Collapse file tree 3 files changed +3
-19
lines changed
lib/node_modules/@stdlib/math/base/special/negafibonacci Expand file tree Collapse file tree 3 files changed +3
-19
lines changed Original file line number Diff line number Diff line change @@ -59,14 +59,6 @@ var addon = require( './../src/addon.node' );
5959* @example
6060* var y = negafibonacci( -6 );
6161* // returns -8
62- *
63- * @example
64- * var y = negafibonacci( NaN );
65- * // returns NaN
66- *
67- * @example
68- * var y = negafibonacci( -3.14 );
69- * // returns NaN
7062*/
7163function negafibonacci ( n ) {
7264 return addon ( n ) ;
Original file line number Diff line number Diff line change 3838 "dependencies" : [
3939 " @stdlib/math/base/napi/unary" ,
4040 " @stdlib/constants/float64/max-safe-nth-fibonacci" ,
41- " @stdlib/math/base/special/abs" ,
42- " @stdlib/math/base/assert/is-nan" ,
43- " @stdlib/math/base/assert/is-integer"
41+ " @stdlib/math/base/special/abs"
4442 ]
4543 },
4644 {
5553 "libpath" : [],
5654 "dependencies" : [
5755 " @stdlib/constants/float64/max-safe-nth-fibonacci" ,
58- " @stdlib/math/base/special/abs" ,
59- " @stdlib/math/base/assert/is-nan" ,
60- " @stdlib/math/base/assert/is-integer"
56+ " @stdlib/math/base/special/abs"
6157 ]
6258 },
6359 {
7268 "libpath" : [],
7369 "dependencies" : [
7470 " @stdlib/constants/float64/max-safe-nth-fibonacci" ,
75- " @stdlib/math/base/special/abs" ,
76- " @stdlib/math/base/assert/is-nan" ,
77- " @stdlib/math/base/assert/is-integer"
71+ " @stdlib/math/base/special/abs"
7872 ]
7973 }
8074 ]
Original file line number Diff line number Diff line change 1818
1919#include "stdlib/math/base/special/negafibonacci.h"
2020#include "stdlib/math/base/special/abs.h"
21- #include "stdlib/math/base/assert/is_nan.h"
22- #include "stdlib/math/base/assert/is_integer.h"
2321#include "stdlib/constants/float64/max_safe_nth_fibonacci.h"
2422
2523static const double negafibonacci_value [ 79 ] = {
You can’t perform that action at this time.
0 commit comments