MCPcopy Create free account
hub / github.com/audacity/audacity / Split

Function Split

libraries/lib-module-manager/PluginInterface.cpp:14–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12
13namespace {
14std::vector<long> Split(const PluginRegistryVersion &regver)
15{
16 std::vector<long> result;
17 auto strings = wxSplit(regver, '.');
18 std::transform(strings.begin(), strings.end(), std::back_inserter(result),
19 [](const wxString &string) {
20 long value;
21 string.ToLong(&value);
22 return value;
23 });
24 return result;
25}
26}
27
28bool Regver_eq(

Callers 3

ApplyPitchAndSpeedMethod · 0.85
Regver_eqFunction · 0.85
Regver_ltFunction · 0.85

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected