Mark Gaiser
Mark Gaiser
The greeter that i'm using (just the plasma 5 greeter) shows: - Only on the primary display with version 0.12.x - On all displays with master I thought that might...
I'm not sure if i should respond in here or open a new topic. Guess i'm going for a post in here now :) So, ever since a few months...
Hmm, what i said above is still very much true, but it's true for any case where n+1 is shorter then n. N being the entry you attempt to learn....
Hi, Thank you very much! I'm quite surprised by the amount of code it took to add this, i was expecting a lot less lines to be honest :) I...
I pulled your changes, but it's not compiling for me (GCC 7.2 on Linux, x64) ```cpp tsl::htrie_map map; std::map entries; entries.emplace("one", 1); entries.emplace("two", 1); entries.emplace("three", 1); map.insert_with_prefix("aa/bb/cc", entries.begin(), entries.end()); ```...
Ha :) Now it works. Now for some performance numbers (as that is what i was trying to do in the first place). Note that is completely naive! I could...
That's tricky on my part. My strings are QString objects, i have to make std::string objects to put them in your container. In fact, if you would support other character...
I see what you mean, yes that could work. For the other char types, i leave that in your capable hands :) Anyhow, i think we have now - somewhat...
Hi, It sounds like the current way (casting char to int ad using that as array index) is a way that has to go if you want to consider case...
Yeah, trying both would work. But that will cripple your performance of this nice trie container :) (or cut it in half at most i suppose)