Thrust
|
Copy construction into a range of uninitialized elements from a source range. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/uninitialized_copy.inl>
Go to the source code of this file.
Namespaces | |
thrust | |
thrust is the top-level namespace which contains all Thrust functions and types. | |
Functions | |
template<typename DerivedPolicy , typename InputIterator , typename ForwardIterator > | |
__host__ __device__ ForwardIterator | thrust::uninitialized_copy (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, InputIterator last, ForwardIterator result) |
template<typename InputIterator , typename ForwardIterator > | |
ForwardIterator | thrust::uninitialized_copy (InputIterator first, InputIterator last, ForwardIterator result) |
template<typename DerivedPolicy , typename InputIterator , typename Size , typename ForwardIterator > | |
__host__ __device__ ForwardIterator | thrust::uninitialized_copy_n (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, InputIterator first, Size n, ForwardIterator result) |
template<typename InputIterator , typename Size , typename ForwardIterator > | |
ForwardIterator | thrust::uninitialized_copy_n (InputIterator first, Size n, ForwardIterator result) |
Copy construction into a range of uninitialized elements from a source range.