thrust::is_contiguous_iterator
Defined in thrust/type_traits/is_contiguous_iterator.h
-
template<typename Iterator>
using thrust::is_contiguous_iterator = ::cuda::std::bool_constant<detail::is_contiguous_iterator_impl_v<::cuda::std::remove_cvref_t<Iterator>>> that returns
true_type
ifIterator
satisfies ContiguousIterator, aka it points to elements that are contiguous in memory, andfalse_type
otherwise.See also
is_contiguous_iterator_v
See also
See also