| 207 | |
| 208 | template <typename LeftT, typename RightT, typename LeftMapT, typename RightMapT> |
| 209 | bool BiMap<LeftT, RightT, LeftMapT, RightMapT>::hasRightValue(Right const& right) const { |
| 210 | return m_rightMap.contains(right); |
| 211 | } |
| 212 | |
| 213 | template <typename LeftT, typename RightT, typename LeftMapT, typename RightMapT> |
| 214 | RightT const& BiMap<LeftT, RightT, LeftMapT, RightMapT>::getRight(Left const& left) const { |
no test coverage detected