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

Method add_positional_option

utils/command_line/CommandLineParser.h:110–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109template <typename T, typename... As>
110inline T *CommandLineParser::add_positional_option(As &&...args)
111{
112 _positional_options.emplace_back(std::make_unique<T>(std::forward<As>(args)...));
113 return static_cast<T *>(_positional_options.back().get());
114}
115
116inline void CommandLineParser::parse(int argc, char **argv)
117{

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected