Sprout/sprout/operation/fixed/append_back.hpp

55 lines
1.8 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_OPERATION_FIXED_APPEND_BACK_HPP
#define SPROUT_OPERATION_FIXED_APPEND_BACK_HPP
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
2013-04-06 04:06:51 +00:00
#include <sprout/index_tuple/metafunction.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
2013-03-31 06:14:10 +00:00
#include <sprout/container/indexes.hpp>
#include <sprout/operation/fixed/append.hpp>
namespace sprout {
namespace fixed {
namespace results {
//
// append_back
//
template<typename Container, typename Input>
struct append_back
: public sprout::fixed::results::append<Container, Input>
{};
} // namespace results
//
// append_back
//
template<typename Container, typename Input>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::append_back<Container, Input>::type
2012-10-06 04:53:07 +00:00
append_back(Container const& cont, Input const& input) {
return sprout::fixed::detail::append_impl<typename sprout::fixed::results::append_back<Container, Input>::type>(
cont,
sprout::container_indexes<typename sprout::fixed::results::append_back<Container, Input>::type>::make(),
sprout::internal_end_offset(cont),
sprout::size(input),
input
);
}
} // namespace fixed
namespace results {
using sprout::fixed::results::append_back;
} // namespace results
using sprout::fixed::append_back;
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_APPEND_BACK_HPP