mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix index_tuple
This commit is contained in:
parent
48f1b2d615
commit
ee8602f6a3
42 changed files with 927 additions and 101 deletions
|
@ -22,6 +22,15 @@ namespace sprout {
|
|||
{
|
||||
return sprout::fixed::rotate_copy(sprout::begin(input), middle, sprout::end(input), result);
|
||||
}
|
||||
|
||||
template<typename Result, typename Input>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
rotate_copy(
|
||||
Input const& input, typename sprout::container_traits<Input>::const_iterator middle
|
||||
)
|
||||
{
|
||||
return sprout::fixed::rotate_copy<Result>(sprout::begin(input), middle, sprout::end(input));
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::rotate_copy;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue