Look for an element in the array and remove it
| 337 | |
| 338 | /// Look for an element in the array and remove it |
| 339 | Iterator remove(const T& element) { |
| 340 | return remove(find(element)); |
| 341 | } |
| 342 | |
| 343 | /// Remove an element from the array and return a iterator |
| 344 | /// pointing to the element after the removed one (or end() if none) |
nothing calls this directly
no outgoing calls
no test coverage detected