#include <hydra/detail/Config.h>
#include <hydra/detail/BackendPolicy.h>
#include <hydra/Types.h>
#include <hydra/detail/external/hydra_thrust/copy.h>
#include <hydra/Range.h>
#include <utility>
Go to the source code of this file.
|
| | hydra |
| | Generic policies definition.
|
| |
|
| template<typename Iterable_Source , typename Iterable_Target > |
| std::enable_if< hydra::detail::is_iterable< Iterable_Source >::value &&hydra::detail::is_iterable< Iterable_Target >::value, Range< decltype(std::declval< Iterable_Target & >).begin())> >::type | hydra::copy (Iterable_Source &&source, Iterable_Target &&destination) |
| |
| template<typename InputIterator , typename OutputIterator > |
| OutputIterator | hydra::copy (InputIterator first, InputIterator last, OutputIterator result) |
| |
| template<detail::Backend Backend, typename InputIterator , typename OutputIterator > |
| OutputIterator | hydra::copy (hydra::detail::BackendPolicy< Backend > const &policy, InputIterator first, InputIterator last, OutputIterator result) |
| |
◆ COPY_H_