4#ifndef TETL_STRING_STR_REPLACE_HPP
5#define TETL_STRING_STR_REPLACE_HPP
9template <
typename CharT>
10constexpr auto str_replace(CharT* f, CharT* l, CharT ch) ->
void
17template <
typename CharT>
18constexpr auto str_replace(CharT* f, CharT* l, CharT
const* sf, CharT
const* sl) ->
void
20 for (; (f != l) && (sf != sl); ++f, ++sf) {
Definition adjacent_find.hpp:9