MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / parse_u64_option

Function parse_u64_option

src/framework/runtime/options.cpp:160–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 }
159 }
160 return match;
161}
162
163std::optional<std::string> find_option(
164 const std::unordered_map<std::string, std::string> & options,
165 std::initializer_list<std::string_view> keys) {
166 const auto match = find_option_match(options, keys);
167 return match.has_value() ? std::optional<std::string>(match->value) : std::nullopt;
168}
169
170bool parse_bool_option(const std::string & value, std::string_view key) {

Callers 3

parse_v2_configFunction · 0.85

Calls 2

find_option_matchFunction · 0.85
parse_u64_valueFunction · 0.85

Tested by

no test coverage detected