| 284 | |
| 285 | template <typename LeftT, typename RightT, typename LeftMapT, typename RightMapT> |
| 286 | RightT const* BiMap<LeftT, RightT, LeftMapT, RightMapT>::rightPtr(Left const& left) const { |
| 287 | return m_leftMap.value(left); |
| 288 | } |
| 289 | |
| 290 | template <typename LeftT, typename RightT, typename LeftMapT, typename RightMapT> |
| 291 | LeftT const* BiMap<LeftT, RightT, LeftMapT, RightMapT>::leftPtr(Right const& right) const { |
no test coverage detected