Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 ....