MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / help

Method help

utils/command_line/EnumOption.h:113–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112template <typename T>
113std::string EnumOption<T>::help() const
114{
115 std::stringstream msg;
116 msg << "--" + this->name() + "={";
117
118 for (const auto &value : _allowed_values)
119 {
120 msg << value << ",";
121 }
122
123 msg << "} - " << this->_help;
124
125 return msg.str();
126}
127
128template <typename T>
129inline const T &EnumOption<T>::value() const

Callers

nothing calls this directly

Calls 2

strMethod · 0.80
nameMethod · 0.45

Tested by

no test coverage detected