3#ifndef TETL_STRING_STR_REPLACE_HPP
4#define TETL_STRING_STR_REPLACE_HPP
8template <
typename CharT>
9constexpr auto str_replace(CharT* f, CharT* l, CharT ch) ->
void
16template <
typename CharT>
17constexpr auto str_replace(CharT* f, CharT* l, CharT
const* sf, CharT
const* sl) ->
void
19 for (; (f != l) && (sf != sl); ++f, ++sf) {