MCPcopy Create free account
hub / github.com/Dobiasd/FunctionalPlus / get_broken_function_helps

Function get_broken_function_helps

api_search/parse_source_files.cpp:105–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105std::vector<function_help> get_broken_function_helps(
106 const std::vector<function_help>& helps)
107{
108 auto help_is_ok = [](const function_help& help) {
109 return !help.name.empty() && !help.signature.empty() && !help.declaration.empty() && !help.documentation.empty();
110 };
111 return fplus::drop_if(help_is_ok, helps);
112}
113
114std::string functions_to_elm_code(const std::vector<function_help> functions)
115{

Callers 1

mainFunction · 0.85

Calls 1

drop_ifFunction · 0.50

Tested by

no test coverage detected