Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/make-github-pseudonymous-again/js-integer-sequences
:shell: Integer sequences for JavaScript
https://github.com/make-github-pseudonymous-again/js-integer-sequences
computer-science integer-sequences javascript js mathematics
Last synced: 25 days ago
JSON representation
:shell: Integer sequences for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-integer-sequences
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2017-04-20T08:10:55.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T04:34:02.000Z (almost 2 years ago)
- Last Synced: 2024-09-13T00:35:31.462Z (about 2 months ago)
- Topics: computer-science, integer-sequences, javascript, js, mathematics
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-integer-sequences
- Size: 1.95 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[@aureooms/js-integer-sequences](https://make-github-pseudonymous-again.github.io/js-integer-sequences)
==Integer sequences for JavaScript.
See [docs](https://make-github-pseudonymous-again.github.io/js-integer-sequences/index.html).
Parent is [@aureooms/js-algorithms](https://github.com/make-github-pseudonymous-again/js-algorithms).```js
import { list , map } from '@aureooms/js-itertools' ;
import * as integer from '@aureooms/js-integer' ;let F = new Fibonacci( integer ) ;
list( map ( integer.stringify , F.range( 10 ) ) ) ; // 0 1 1 2 3 5 8 13 21 34
```[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-integer-sequences.svg)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-integer-sequences/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@aureooms/js-integer-sequences.svg)](https://www.npmjs.org/package/@aureooms/js-integer-sequences)
[![Build](https://img.shields.io/travis/make-github-pseudonymous-again/js-integer-sequences/main.svg)](https://travis-ci.org/make-github-pseudonymous-again/js-integer-sequences/branches)
[![Dependencies](https://img.shields.io/david/make-github-pseudonymous-again/js-integer-sequences.svg)](https://david-dm.org/make-github-pseudonymous-again/js-integer-sequences)
[![Dev dependencies](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-integer-sequences.svg)](https://david-dm.org/make-github-pseudonymous-again/js-integer-sequences?type=dev)
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-integer-sequences.svg)](https://github.com/make-github-pseudonymous-again/js-integer-sequences/issues)
[![Downloads](https://img.shields.io/npm/dm/@aureooms/js-integer-sequences.svg)](https://www.npmjs.org/package/@aureooms/js-integer-sequences)[![Code issues](https://img.shields.io/codeclimate/issues/make-github-pseudonymous-again/js-integer-sequences.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/make-github-pseudonymous-again/js-integer-sequences.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/make-github-pseudonymous-again/js-integer-sequences/main.svg)](https://codecov.io/gh/make-github-pseudonymous-again/js-integer-sequences)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/make-github-pseudonymous-again/js-integer-sequences.svg)](https://codeclimate.com/github/make-github-pseudonymous-again/js-integer-sequences/trends/technical_debt)
[![Documentation](https://make-github-pseudonymous-again.github.io/js-integer-sequences/badge.svg)](https://make-github-pseudonymous-again.github.io/js-integer-sequences/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/@aureooms/js-integer-sequences)](https://bundlephobia.com/result?p=@aureooms/js-integer-sequences)## Children
- [@aureooms/js-fibonacci](https://github.com/make-github-pseudonymous-again/js-fibonacci): Fibonacci numbers for JavaScript.