22 #ifndef EDSP_TO_LOWER_HPP 23 #define EDSP_TO_LOWER_HPP 28 namespace edsp {
namespace string {
36 template <
typename Char>
48 template <
typename InputIt,
typename OutputIt>
49 constexpr
void tolower(InputIt first, InputIt last, OutputIt d_first) {
50 std::transform(first, last, first,
tolower);
55 #endif //EDSP_TO_LOWER_HPP constexpr void tolower(InputIt first, InputIt last, OutputIt d_first)
Converts the characters in the range [first, last) to lowercase according to the character conversion...
Definition: to_lower.hpp:49
constexpr Char tolower(Char character)
Definition: to_lower.hpp:37
Definition: amplifier.hpp:29