sort chunks

This commit is contained in:
bronku 2025-11-13 19:35:12 +01:00
parent 746fc01323
commit eddfd42284
6 changed files with 75 additions and 14 deletions

View file

@ -20,6 +20,10 @@ private:
}
public:
// so that i can create a vecotr of set size, without the .reserve(), and other stuff
SubBuffer()
{
}
// for std::sort support
using iterator = Record*;
iterator begin() { return data_; }