Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
tbb::internal::concurrent_queue_iterator< Container, Value > Class Template Reference

Meets requirements of a forward iterator for STL. More...

#include <_concurrent_queue_impl.h>

Inheritance diagram for tbb::internal::concurrent_queue_iterator< Container, Value >:
Collaboration diagram for tbb::internal::concurrent_queue_iterator< Container, Value >:

Public Member Functions

 concurrent_queue_iterator ()
 
 concurrent_queue_iterator (const concurrent_queue_iterator< Container, typename Container::value_type > &other)
 
concurrent_queue_iteratoroperator= (const concurrent_queue_iterator &other)
 Iterator assignment. More...
 
Value & operator* () const
 Reference to current item. More...
 
Value * operator-> () const
 
concurrent_queue_iteratoroperator++ ()
 Advance to next item in queue. More...
 
Value * operator++ (int)
 Post increment. More...
 

Private Member Functions

 concurrent_queue_iterator (const concurrent_queue_base_v3 &queue)
 Construct iterator pointing to head of queue. More...
 

Friends

template<typename T , class A >
class ::tbb::concurrent_bounded_queue
 

Additional Inherited Members

- Protected Member Functions inherited from tbb::internal::concurrent_queue_iterator_base_v3
 concurrent_queue_iterator_base_v3 ()
 Default constructor. More...
 
 concurrent_queue_iterator_base_v3 (const concurrent_queue_iterator_base_v3 &i)
 Copy constructor. More...
 
__TBB_EXPORTED_METHOD concurrent_queue_iterator_base_v3 (const concurrent_queue_base_v3 &queue)
 Obsolete entry point for constructing iterator pointing to head of queue. More...
 
__TBB_EXPORTED_METHOD concurrent_queue_iterator_base_v3 (const concurrent_queue_base_v3 &queue, size_t offset_of_data)
 Construct iterator pointing to head of queue. More...
 
void __TBB_EXPORTED_METHOD assign (const concurrent_queue_iterator_base_v3 &i)
 Assignment. More...
 
void __TBB_EXPORTED_METHOD advance ()
 Advance iterator one step towards tail of queue. More...
 
__TBB_EXPORTED_METHOD ~concurrent_queue_iterator_base_v3 ()
 Destructor. More...
 
- Protected Attributes inherited from tbb::internal::concurrent_queue_iterator_base_v3
voidmy_item
 Pointer to current item. More...
 

Detailed Description

template<typename Container, typename Value>
class tbb::internal::concurrent_queue_iterator< Container, Value >

Meets requirements of a forward iterator for STL.

Value is either the T or const T type of the container.

Definition at line 816 of file _concurrent_queue_impl.h.

Constructor & Destructor Documentation

◆ concurrent_queue_iterator() [1/3]

template<typename Container, typename Value>
tbb::internal::concurrent_queue_iterator< Container, Value >::concurrent_queue_iterator ( const concurrent_queue_base_v3 queue)
inlineexplicitprivate

Construct iterator pointing to head of queue.

Definition at line 1013 of file _concurrent_queue_impl.h.

1013  :
1015  {
1016  }
#define __TBB_offsetof(class_name, member_name)
Extended variant of the standard offsetof macro.
Definition: tbb_stddef.h:266
auto last(Container &c) -> decltype(begin(c))

◆ concurrent_queue_iterator() [2/3]

template<typename Container, typename Value>
tbb::internal::concurrent_queue_iterator< Container, Value >::concurrent_queue_iterator ( )
inline

Definition at line 1019 of file _concurrent_queue_impl.h.

1019 {}

◆ concurrent_queue_iterator() [3/3]

template<typename Container, typename Value>
tbb::internal::concurrent_queue_iterator< Container, Value >::concurrent_queue_iterator ( const concurrent_queue_iterator< Container, typename Container::value_type > &  other)
inline

If Value==Container::value_type, then this routine is the copy constructor. If Value==const Container::value_type, then this routine is a conversion constructor.

Definition at line 1023 of file _concurrent_queue_impl.h.

1023  :
1025  {}

Member Function Documentation

◆ operator*()

template<typename Container, typename Value>
Value& tbb::internal::concurrent_queue_iterator< Container, Value >::operator* ( ) const
inline

Reference to current item.

Definition at line 1034 of file _concurrent_queue_impl.h.

1034  {
1035  return *static_cast<Value*>(my_item);
1036  }

References tbb::strict_ppl::internal::concurrent_queue_iterator_base_v3< tbb_remove_cv< Value >::type >::my_item.

◆ operator++() [1/2]

template<typename Container, typename Value>
concurrent_queue_iterator& tbb::internal::concurrent_queue_iterator< Container, Value >::operator++ ( )
inline

Advance to next item in queue.

Definition at line 1041 of file _concurrent_queue_impl.h.

1041  {
1042  advance();
1043  return *this;
1044  }
void __TBB_EXPORTED_METHOD advance()
Advance iterator one step towards tail of queue.

References tbb::strict_ppl::internal::concurrent_queue_iterator_base_v3< tbb_remove_cv< Value >::type >::advance().

Here is the call graph for this function:

◆ operator++() [2/2]

template<typename Container, typename Value>
Value* tbb::internal::concurrent_queue_iterator< Container, Value >::operator++ ( int  )
inline

Post increment.

Definition at line 1047 of file _concurrent_queue_impl.h.

1047  {
1048  Value* result = &operator*();
1049  operator++();
1050  return result;
1051  }
Value & operator*() const
Reference to current item.
concurrent_queue_iterator & operator++()
Advance to next item in queue.

References tbb::strict_ppl::internal::concurrent_queue_iterator< Container, Value >::operator*(), and tbb::strict_ppl::internal::concurrent_queue_iterator< Container, Value >::operator++().

Here is the call graph for this function:

◆ operator->()

template<typename Container, typename Value>
Value* tbb::internal::concurrent_queue_iterator< Container, Value >::operator-> ( ) const
inline

Definition at line 1038 of file _concurrent_queue_impl.h.

1038 {return &operator*();}
Value & operator*() const
Reference to current item.

References tbb::strict_ppl::internal::concurrent_queue_iterator< Container, Value >::operator*().

Here is the call graph for this function:

◆ operator=()

template<typename Container, typename Value>
concurrent_queue_iterator& tbb::internal::concurrent_queue_iterator< Container, Value >::operator= ( const concurrent_queue_iterator< Container, Value > &  other)
inline

Iterator assignment.

Definition at line 1028 of file _concurrent_queue_impl.h.

1028  {
1029  assign(other);
1030  return *this;
1031  }
void __TBB_EXPORTED_METHOD assign(const concurrent_queue_iterator_base_v3 &i)
Assignment.

References tbb::strict_ppl::internal::concurrent_queue_iterator_base_v3< tbb_remove_cv< Value >::type >::assign().

Here is the call graph for this function:

Friends And Related Function Documentation

◆ ::tbb::concurrent_bounded_queue

template<typename Container, typename Value>
template<typename T , class A >
friend class ::tbb::concurrent_bounded_queue
friend

Definition at line 1007 of file _concurrent_queue_impl.h.


The documentation for this class was generated from the following file:

Copyright © 2005-2019 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.