! * \brief insert an element */
| 54 | * \brief insert an element |
| 55 | */ |
| 56 | void insert(const Elem& elem) { |
| 57 | if (m_container && m_container->count(elem)) |
| 58 | return; |
| 59 | ensure_own(); |
| 60 | m_container->insert(elem); |
| 61 | } |
| 62 | |
| 63 | /*! |
| 64 | * \brief insert all elements in another set into this |
no test coverage detected