erase ===== :doc:`/types/Bimap/index`::erase Erases an element from the map. Declaration ----------- .. code-block:: cpp template void erase(const T& key); Parameters ---------- .. list-table:: :width: 100% :header-rows: 1 :class: code-table * - Name - Type - Description * - key - *T* - The key of the element to erase. Returns ------- None. ==== Declaration ----------- .. code-block:: cpp template void erase(const U& key); Parameters ---------- .. list-table:: :width: 100% :header-rows: 1 :class: code-table * - Name - Type - Description * - key - *U* - The key of the element to erase. Returns ------- None.