mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add back_inserter, front_inserter
This commit is contained in:
parent
7c706381d4
commit
74e83e31a7
70 changed files with 1094 additions and 186 deletions
22
sprout/container/fit_size.hpp
Normal file
22
sprout/container/fit_size.hpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef SPROUT_FIXED_CONTAINER_FIT_SIZE_HPP
|
||||
#define SPROUT_FIXED_CONTAINER_FIT_SIZE_HPP
|
||||
|
||||
#include <type_traits>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/container_traits.hpp>
|
||||
#include <sprout/container/container_fitness_traits.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// fit_size
|
||||
//
|
||||
template<typename Container>
|
||||
inline SPROUT_CONSTEXPR typename sprout::container_traits<typename std::remove_reference<Container>::type>::difference_type
|
||||
fit_size(Container&& cont, typename sprout::container_traits<typename std::remove_reference<Container>::type>::difference_type size) {
|
||||
typedef typename std::remove_reference<Container>::type container_type;
|
||||
return sprout::container_fitness_traits<container_type>::fit_size(sprout::forward<Container>(cont), size);
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FIXED_CONTAINER_FIT_SIZE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue