CUB
|
A discard iterator.
Public Types | |
typedef DiscardOutputIterator | self_type |
My own type. More... | |
typedef OffsetT | difference_type |
Type to express the result of subtracting one iterator from another. More... | |
typedef void | value_type |
The type of the element the iterator can point to. More... | |
typedef void | pointer |
The type of a pointer to an element the iterator can point to. More... | |
typedef void | reference |
The type of a reference to an element the iterator can point to. More... | |
typedef std::random_access_iterator_tag | iterator_category |
The iterator category. More... | |
Public Methods | |
__host__ __device__ __forceinline__ | DiscardOutputIterator (OffsetT offset=0) |
Constructor. More... | |
__host__ __device__ __forceinline__ self_type | operator++ (int) |
Postfix increment. More... | |
__host__ __device__ __forceinline__ self_type | operator++ () |
Prefix increment. More... | |
__host__ __device__ __forceinline__ self_type & | operator* () |
Indirection. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type | operator+ (Distance n) const |
Addition. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type & | operator+= (Distance n) |
Addition assignment. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type | operator- (Distance n) const |
Subtraction. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type & | operator-= (Distance n) |
Subtraction assignment. More... | |
__host__ __device__ __forceinline__ difference_type | operator- (self_type other) const |
Distance. More... | |
template<typename Distance > | |
__host__ __device__ __forceinline__ self_type & | operator[] (Distance n) |
Array subscript. More... | |
__host__ __device__ __forceinline__ pointer | operator-> () |
Structure dereference. More... | |
template<typename T > | |
__host__ __device__ __forceinline__ void | operator= (T const &) |
Assignment to anything else (no-op) More... | |
__host__ __device__ __forceinline__ | operator void * () const |
Cast to void* operator. More... | |
__host__ __device__ __forceinline__ bool | operator== (const self_type &rhs) |
Equal to. More... | |
__host__ __device__ __forceinline__ bool | operator!= (const self_type &rhs) |
Not equal to. More... | |
Friends | |
std::ostream & | operator<< (std::ostream &os, const self_type &itr) |
ostream operator More... | |
typedef DiscardOutputIterator cub::DiscardOutputIterator< OffsetT >::self_type |
My own type.
typedef OffsetT cub::DiscardOutputIterator< OffsetT >::difference_type |
Type to express the result of subtracting one iterator from another.
typedef void cub::DiscardOutputIterator< OffsetT >::value_type |
The type of the element the iterator can point to.
typedef void cub::DiscardOutputIterator< OffsetT >::pointer |
The type of a pointer to an element the iterator can point to.
typedef void cub::DiscardOutputIterator< OffsetT >::reference |
The type of a reference to an element the iterator can point to.
typedef std::random_access_iterator_tag cub::DiscardOutputIterator< OffsetT >::iterator_category |
The iterator category.
|
inline |
Constructor.
offset | Base offset |
|
inline |
Postfix increment.
|
inline |
Prefix increment.
|
inline |
Indirection.
|
inline |
Addition.
|
inline |
Addition assignment.
|
inline |
Subtraction.
|
inline |
Subtraction assignment.
|
inline |
Distance.
|
inline |
Array subscript.
|
inline |
Structure dereference.
|
inline |
Assignment to anything else (no-op)
|
inline |
Cast to void* operator.
|
inline |
Equal to.
|
inline |
Not equal to.
|
friend |
ostream operator