23 #ifndef EDSP_TO_UPPER_HPP 24 #define EDSP_TO_UPPER_HPP 29 namespace edsp {
namespace string {
37 template <
typename Char>
49 template <
typename InputIt,
typename OutputIt>
50 constexpr
void toupper(InputIt first, InputIt last, OutputIt d_first) {
51 std::transform(first, last, first,
toupper);
56 #endif //EDSP_TO_UPPER_HPP constexpr void toupper(InputIt first, InputIt last, OutputIt d_first)
Converts the characters in the range [first, last) to uppercase according to the character conversion...
Definition: to_upper.hpp:50
constexpr Char toupper(Char character)
Definition: to_upper.hpp:38
Definition: amplifier.hpp:29