std::string repeat_n_with_logs(int n, std::string const& s) | |
{ | |
return wrap_with_logs("repeat_n"s, repeat_n, n, s); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
std::string repeat_n_with_logs(int n, std::string const& s) | |
{ | |
return wrap_with_logs("repeat_n"s, repeat_n, n, s); | |
} |