Insert and delete operations of insert(), erase() (plus insert_after() and erase_after() for std::forward_list-like containers were not modeled yet. This patch fixes this issue.
Diff Detail
Unit Tests
Time | Test | |
---|---|---|
120 ms | lldb-unit.Host/_/HostTests::Unknown Unit Message ("") |
Event Timeline
It seems like we could model here emplace and emplace_after exactly the same way we do with insert and insert_after, couldn't we? Perhaps that could go into this patch too.
They are already in this patch (see the tests and the CallDescriptionMap), but they share their handing function with insert and insert_after.
clang-format: please reformat the code