Thrust
|
Copy construction into a range of uninitialized elements from a source value. More...
#include <thrust/detail/config.h>
#include <thrust/detail/execution_policy.h>
#include <thrust/detail/uninitialized_fill.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 ForwardIterator , typename T > | |
__host__ __device__ void | thrust::uninitialized_fill (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, ForwardIterator last, const T &x) |
template<typename ForwardIterator , typename T > | |
void | thrust::uninitialized_fill (ForwardIterator first, ForwardIterator last, const T &x) |
template<typename DerivedPolicy , typename ForwardIterator , typename Size , typename T > | |
__host__ __device__ ForwardIterator | thrust::uninitialized_fill_n (const thrust::detail::execution_policy_base< DerivedPolicy > &exec, ForwardIterator first, Size n, const T &x) |
template<typename ForwardIterator , typename Size , typename T > | |
ForwardIterator | thrust::uninitialized_fill_n (ForwardIterator first, Size n, const T &x) |
Copy construction into a range of uninitialized elements from a source value.