| 6442 | template<typename ScalarType, typename std::enable_if< |
| 6443 | std::is_scalar<ScalarType>::value, int>::type = 0> |
| 6444 | friend bool operator==(const_reference lhs, ScalarType rhs) noexcept |
| 6445 | { |
| 6446 | return lhs == basic_json(rhs); |
| 6447 | } |
| 6448 | |
| 6449 | /*! |
| 6450 | @brief comparison: equal |
nothing calls this directly
no test coverage detected