mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add case_conv algorithms
This commit is contained in:
parent
ef5aa728b0
commit
8885b115f7
83 changed files with 1300 additions and 44 deletions
46
sprout/algorithm/string/fit/to_lower.hpp
Normal file
46
sprout/algorithm/string/fit/to_lower.hpp
Normal file
|
@ -0,0 +1,46 @@
|
|||
#ifndef SPROUT_ALGORITHM_STRING_FIT_TO_LOWER_HPP
|
||||
#define SPROUT_ALGORITHM_STRING_FIT_TO_LOWER_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/string/fixed/to_lower.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/sub_array/sub_array.hpp>
|
||||
#include <sprout/sub_array/sub.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace algorithm {
|
||||
namespace fit {
|
||||
namespace detail {
|
||||
template<typename Container>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type
|
||||
to_lower_impl(
|
||||
Container const& cont,
|
||||
typename sprout::container_traits<Container>::difference_type offset
|
||||
)
|
||||
{
|
||||
return sprout::sub_copy(
|
||||
sprout::get_internal(sprout::algorithm::fixed::to_lower(cont)),
|
||||
offset,
|
||||
offset + sprout::size(cont)
|
||||
);
|
||||
}
|
||||
} // namespace detail
|
||||
//
|
||||
// to_lower
|
||||
//
|
||||
template<typename Container>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type
|
||||
to_lower(Container const& cont) {
|
||||
return sprout::algorithm::fit::detail::to_lower_impl(cont, sprout::internal_begin_offset(cont));
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace algorithm
|
||||
|
||||
namespace fit {
|
||||
using sprout::algorithm::fit::to_lower;
|
||||
} // namespace fit
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_STRING_FIT_TO_LOWER_HPP
|
Loading…
Add table
Add a link
Reference in a new issue