thrust::is_contiguous_iterator_v
Defined in thrust/type_traits/is_contiguous_iterator.h
-
template<typename Iterator>
constexpr bool thrust::is_contiguous_iterator_v = is_contiguous_iterator<Iterator>::value constexpr bool
that istrue
ifIterator
satisfies ContiguousIterator, aka it points to elements that are contiguous in memory, andfalse
otherwise.See also
is_contiguous_iterator
See also
See also