| 132 | } |
| 133 | |
| 134 | bool Param::exist(const std::string& name) const { |
| 135 | return TypedRef(ParamImpl, m_impl.get()).m_vals.find(name) != |
| 136 | TypedRef(ParamImpl, m_impl.get()).m_vals.end(); |
| 137 | } |
| 138 | |
| 139 | std::string Param::to_bytes(void) const { |
| 140 | std::string res; |
no test coverage detected