16 : m_parameter(
std::move(parameter)), m_tie(
std::move(tie)) {}
19 auto const dotIndex = fullParameter.find(
".");
20 if (dotIndex != std::string::npos) {
21 return fullParameter.substr(0, dotIndex + 1) +
"f0." + fullParameter.substr(dotIndex + 1);
27 auto const firstDotIndex = fullParameter.find(
".");
28 if (firstDotIndex != std::string::npos) {
29 auto const secondDotIndex = fullParameter.find(
".", firstDotIndex + 1);
30 if (secondDotIndex != std::string::npos) {
31 return fullParameter.substr(0, firstDotIndex + 1) + fullParameter.substr(secondDotIndex + 1);