- Inside your computer
-
Hi I'm cat! I do stuff.
- Joined on
2025-06-17
Block a user
Container - Dual-key Map
5846c5bf34
is the first iteration that works. I still need to add a proper deletion system. Right now I'm…
Container - Dual-key Map
I have considered possibility of merging all 3 vectors into 1. The reason I am not fond of it as of now is that, with this fragmentation. We can additionally look for specific areas. For example…
Container - Dual-key Map
#include <print>
#include <string>
#include <vector>
int main() {
std::vector<std::string *> container{};
container.emplace_back(new std::string("Test"));
auto &t1 =…
Container - Dual-key Map
regarding my last comment on references being nullified can be tested with the following
#include <print>
#include <string>
#include <vector>
int main() {
std::vector<std::string…