https://github.com/make-github-pseudonymous-again/js-bisect
:scissors: Python's binary search library for JavaScript
https://github.com/make-github-pseudonymous-again/js-bisect
agpl algorithms binary binary-search bisect insort javascript search
Last synced: 3 months ago
JSON representation
:scissors: Python's binary search library for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-bisect
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2016-11-14T16:57:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T14:08:46.000Z (about 4 years ago)
- Last Synced: 2025-03-30T04:02:22.609Z (3 months ago)
- Topics: agpl, algorithms, binary, binary-search, bisect, insort, javascript, search
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-bisect
- Size: 2.88 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[js-bisect](http://make-github-pseudonymous-again.github.io/js-bisect)
==
Python's binary search library for JavaScript. Parent is
[js-algorithms](https://github.com/make-github-pseudonymous-again/js-algorithms).```js
let {
bisect_left ,
bisect_right ,
insort_left ,
insort_right ,
} = bisect ;
```[](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-bisect/master/LICENSE)
[](https://www.npmjs.org/package/@aureooms/js-bisect)
[](https://travis-ci.org/make-github-pseudonymous-again/js-bisect/branches)
[](https://david-dm.org/make-github-pseudonymous-again/js-bisect)
[](https://david-dm.org/make-github-pseudonymous-again/js-bisect?type=dev)
[](https://github.com/make-github-pseudonymous-again/js-bisect/issues)
[](https://www.npmjs.org/package/@aureooms/js-bisect)[](https://codeclimate.com/github/make-github-pseudonymous-again/js-bisect/issues)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-bisect/trends/churn)
[](https://codecov.io/gh/make-github-pseudonymous-again/js-bisect)
[](https://codeclimate.com/github/make-github-pseudonymous-again/js-bisect/trends/technical_debt)
[](http://make-github-pseudonymous-again.github.io/js-bisect//source.html)
[](https://bundlephobia.com/result?p=@aureooms/js-bisect)## References
- [Python's bisect library](https://docs.python.org/3.6/library/bisect.html).