UNPKG

@stdlib/math

Version:
146 lines (127 loc) 2.95 kB
/** * @license Apache-2.0 * * Copyright (c) 2020 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ 'use strict'; // MODULES // var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); var iteratorSymbol = require( '@stdlib/symbol/iterator' ); var factorial = require( './../../../../base/special/factorial' ); var validate = require( './validate.js' ); // VARIABLES // var MAX_ITER = 1e308; // MAIN // /** * Returns an iterator which generates a sequence of factorials. * * ## Notes * * - If an environment supports `Symbol.iterator`, the returned iterator is iterable. * * @param {Options} [options] - function options * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @returns {Iterator} iterator * * @example * var iter = iterFactorialsSeq(); * * var v = iter.next().value; * // returns 1 * * v = iter.next().value; * // returns 1 * * v = iter.next().value; * // returns 2 * * // ... */ function iterFactorialsSeq( options ) { var opts; var iter; var FLG; var err; var i; opts = { 'iter': MAX_ITER }; if ( arguments.length ) { err = validate( opts, options ); if ( err ) { throw err; } } i = -1; // Create an iterator protocol-compliant object: iter = {}; setReadOnly( iter, 'next', next ); setReadOnly( iter, 'return', end ); // If an environment supports `Symbol.iterator`, make the iterator iterable: if ( iteratorSymbol ) { setReadOnly( iter, iteratorSymbol, factory ); } return iter; /** * Returns an iterator protocol-compliant object containing the next iterated value. * * @private * @returns {Object} iterator protocol-compliant object */ function next() { i += 1; if ( FLG || i >= opts.iter ) { return { 'done': true }; } return { 'value': factorial( i ), 'done': false }; } /** * Finishes an iterator. * * @private * @param {*} [value] - value to return * @returns {Object} iterator protocol-compliant object */ function end( value ) { FLG = true; if ( arguments.length ) { return { 'value': value, 'done': true }; } return { 'done': true }; } /** * Returns a new iterator. * * @private * @returns {Iterator} iterator */ function factory() { return iterFactorialsSeq( opts ); } } // EXPORTS // module.exports = iterFactorialsSeq;