Overloaded not equal operator
| 609 | |
| 610 | /// Overloaded not equal operator |
| 611 | bool operator!=(const Map<K,V>& map) const { |
| 612 | |
| 613 | return !((*this) == map); |
| 614 | } |
| 615 | |
| 616 | /// Overloaded assignment operator |
| 617 | Map<K,V>& operator=(const Map<K, V>& map) { |
nothing calls this directly
no outgoing calls
no test coverage detected