tower120

Results 30 issues of tower120

Continuing https://github.com/boostorg/iterator/issues/47. Currently, `iterator_facade` does not allow to have RandomAcess iterator with reference proxy (aka `std::vector::iterator::reference`) . It looks like that the _only_ thing that prevent this - is iterator-category...

`BitSetRanges` replace full blocks with prealocated one. Similar to empty blocks in `BitSet`. This allows to fill ranges at close to O(1) time. Also, filled blocks does not consume memory....

experiment
tracking issue

On Windows, generated plots at 100% zoom have virtually unreadable axis marks and ticks. Here is what I see (click on to see at 100%): ![изображение](https://github.com/user-attachments/assets/4cb7d13a-a9b5-4ee8-a608-59ec4b30f45a)

What title says... Do you want a PR with that missing parts?

semver-minor

This is feature request. I would like to have widest possible hardware supported type for current compilation flags. Like: ``` pub type u8xMAX = u8x16; // for SSE2 ``` I...

semver-minor

This is my version of grouped/batched toposort implementation for https://github.com/petgraph/petgraph/issues/908. I believe this version is faster then https://github.com/petgraph/petgraph/pull/920 - because it does not use `Vec` as output, instead it use...

Looks like library misses `toposort` version with result, that can be used in parallel. Like, the one that return sequence of groups, with elements that can be processed simultaneously (if...