Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulcager/subsets
Fast iteration of subsets.
https://github.com/paulcager/subsets
subsets
Last synced: about 2 months ago
JSON representation
Fast iteration of subsets.
- Host: GitHub
- URL: https://github.com/paulcager/subsets
- Owner: paulcager
- License: apache-2.0
- Created: 2017-05-07T11:53:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T15:31:54.000Z (about 7 years ago)
- Last Synced: 2024-06-20T12:05:45.502Z (7 months ago)
- Topics: subsets
- Language: Go
- Homepage:
- Size: 189 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# subsets
Fast iteration of subsets, at the expense of a rather large amount of memory.
_Q: What's this for?_
A: I wanted to see if a lookup table would be fast than the traditional way of calculating subsets. CPUs have become faster at a greater rate than RAM.
_Q: Is it?_
A: Yes. Although unless your application does nothing except subset iteration, you won't notice it.
And for Go1.9 there is https://github.com/golang/go/issues/18616 ....