You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/iter/sequences/fibonacci/lib/main.js
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,11 @@ var F1 = 1;
36
36
/**
37
37
* Returns an iterator which generates a Fibonacci sequence.
38
38
*
39
+
* ## Notes
40
+
*
41
+
* - The returned iterator can only generate the first `79` Fibonacci numbers, as larger Fibonacci numbers cannot be safely represented in double-precision floating-point format.
42
+
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
43
+
*
39
44
* @param {Options} [options] - function options
40
45
* @param {NonNegativeInteger} [options.iter=79] - number of iterations
41
46
* @throws {TypeError} options argument must be an object
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/iter/sequences/lucas/lib/main.js
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,11 @@ var L1 = 1;
36
36
/**
37
37
* Returns an iterator which generates a Lucas sequence.
38
38
*
39
+
* ## Notes
40
+
*
41
+
* - The returned iterator can only generate the first `77` Lucas numbers, as larger Lucas numbers cannot be safely represented in double-precision floating-point format.
42
+
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
43
+
*
39
44
* @param {Options} [options] - function options
40
45
* @param {NonNegativeInteger} [options.iter=77] - number of iterations
41
46
* @throws {TypeError} options argument must be an object
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/iter/sequences/negafibonacci/lib/main.js
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,11 @@ var F1 = 1;
36
36
/**
37
37
* Returns an iterator which generates a negaFibonacci sequence.
38
38
*
39
+
* ## Notes
40
+
*
41
+
* - The returned iterator can only generate the first `79` negaFibonacci numbers, as larger negaFibonacci numbers cannot be safely represented in double-precision floating-point format.
42
+
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
43
+
*
39
44
* @param {Options} [options] - function options
40
45
* @param {NonNegativeInteger} [options.iter=79] - number of iterations
41
46
* @throws {TypeError} options argument must be an object
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/iter/sequences/negalucas/lib/main.js
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,11 @@ var L1 = -1;
36
36
/**
37
37
* Returns an iterator which generates a negaLucas sequence.
38
38
*
39
+
* ## Notes
40
+
*
41
+
* - The returned iterator can only generate the first `77` negaLucas numbers, as larger negaLucas numbers cannot be safely represented in double-precision floating-point format.
42
+
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
43
+
*
39
44
* @param {Options} [options] - function options
40
45
* @param {NonNegativeInteger} [options.iter=77] - number of iterations
41
46
* @throws {TypeError} options argument must be an object
0 commit comments