I wounder why does QMap realised over skiplist data-structure and not rb-tree? There is very interesting SO thread about concurrency data-structs and skip-list benefits over rb-tree, pros and cons. It is indeed VERY interesing dialog with helpfull links, but QMap is not thread safe, it doesnt do any mutex locking for syncing access out of the box. It requires wrapper or subclassing.
For me its not simplier to write "hand-made" skiped list instead of rb-tree, so this is not obvious either.
Is there any kill-feature in context of non thread-safe Qt container?
Tnx in advance.