| 20 | |
| 21 | template <typename TType> |
| 22 | static void SetOption(const TType& value, const TString& name, NJson::TJsonValue* optionsJson) { |
| 23 | (*optionsJson)[name] = ToString(value); |
| 24 | } |
| 25 | |
| 26 | template <typename TContainerType> |
| 27 | static void SetContainerOption(const TContainerType& container, const TString& name, NJson::TJsonValue* optionsJson) { |
no test coverage detected