Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 449 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 449 Bytes

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 golang/go#18616 ....