mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
sprout/algorithm/fixed/partition_copy.hpp 修正
sprout/algorithm/fit/partition_copy.hpp 修正
This commit is contained in:
parent
4729d31bf2
commit
068656e0b7
11 changed files with 343 additions and 248 deletions
20
sprout/fixed_container/fixed_end_offset_backward.hpp
Normal file
20
sprout/fixed_container/fixed_end_offset_backward.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef SPROUT_FIXED_CONTAINER_FIXED_END_OFFSET_BACKWARD_HPP
|
||||
#define SPROUT_FIXED_CONTAINER_FIXED_END_OFFSET_BACKWARD_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/end.hpp>
|
||||
#include <sprout/fixed_container/fixed_end.hpp>
|
||||
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// fixed_end_offset_backward
|
||||
//
|
||||
template<typename Range>
|
||||
SPROUT_CONSTEXPR typename sprout::fixed_container_traits<Range>::difference_type fixed_end_offset_backward(Range const& range) {
|
||||
return NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(sprout::end(range), sprout::fixed_end(range));
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_FIXED_CONTAINER_FIXED_END_OFFSET_BACKWARD_HPP
|
Loading…
Add table
Add a link
Reference in a new issue