mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
null_array 追加
This commit is contained in:
parent
a52257117e
commit
6ae26b7470
7 changed files with 680 additions and 11 deletions
|
@ -18,8 +18,13 @@ namespace sprout {
|
|||
return sprout::remake_clone_functor<Container>().template operator()(other, size, args...);
|
||||
}
|
||||
template<typename Container, typename Other, typename... Args>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::clone_type remake_clone(Other const& other, Args const&... args) {
|
||||
return sprout::remake_clone_functor<Container>().template operator()(other, args...);
|
||||
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Container>::clone_type remake_clone(
|
||||
Other const& other,
|
||||
typename sprout::fixed_container_traits<Container>::difference_type size,
|
||||
Args const&... args
|
||||
)
|
||||
{
|
||||
return sprout::remake_clone_functor<Container>().template operator()(other, size, args...);
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue