El 12/04/2026 a las 15:36, Andrzej Krzemienski escribió:
sob., 11 kwi 2026 o 10:01 Joaquín M López Muñoz <joaquinlopezmunoz@gmail.com> napisał(a):
[...]
But your feedback is clear and I will extend the docs to be as self-contained as possible. I’ll do that before the review begins.
Ok, I understand the situation. In that case I would reduce my expectations. I would expect to find the following minimum information that would help users understand the motivation and determine if they want to use it:
container::hub is a good choice when you perform frequent insertions and deletions, and the access to elements is via iterating over all elements in the sequence. Upon every erasure a hole is left, which is then skipped during the iterations. Subsequent insertions fill these holes.
Its iterators are bidirectional iterators. Insertion and erasure require O(1) operations on T, and do not invalidate iterators to non-erased elements.
I've expanded significantly the README.md: https://github.com/joaquintides/hub?tab=readme-ov-file#hub-container Hopefully this will help reviewers/users. Best, Joaquín M López Muñoz