mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix support for STL container: some algorithms
This commit is contained in:
parent
ace6acad69
commit
a9cd556f8e
28 changed files with 911 additions and 106 deletions
21
sprout/container/internal_size.hpp
Normal file
21
sprout/container/internal_size.hpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SPROUT_CONTAINER_INTERNAL_SIZE_HPP
|
||||
#define SPROUT_CONTAINER_INTERNAL_SIZE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/container_traits.hpp>
|
||||
#include <sprout/container/internal_begin.hpp>
|
||||
#include <sprout/container/internal_end.hpp>
|
||||
#include <sprout/iterator/operation.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// internal_size
|
||||
//
|
||||
template<typename Container>
|
||||
inline SPROUT_CONSTEXPR typename sprout::container_traits<Container>::difference_type
|
||||
internal_size(Container const& cont) {
|
||||
return sprout::distance(sprout::internal_begin(cont), sprout::internal_end(cont));
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_CONTAINER_INTERNAL_SIZE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue