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 820 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 1017 of file _concurrent_queue_impl.h.

1017  :
1019  {
1020  }
#define __TBB_offsetof(class_name, member_name)
Extended variant of the standard offsetof macro.
Definition: tbb_stddef.h:270
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 1023 of file _concurrent_queue_impl.h.

1023 {}

◆ 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 1027 of file _concurrent_queue_impl.h.

1027  :
1029  {}

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 1038 of file _concurrent_queue_impl.h.

1038  {
1039  return *static_cast<Value*>(my_item);
1040  }

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 1045 of file _concurrent_queue_impl.h.

1045  {
1046  advance();
1047  return *this;
1048  }
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 1051 of file _concurrent_queue_impl.h.

1051  {
1052  Value* result = &operator*();
1053  operator++();
1054  return result;
1055  }
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 1042 of file _concurrent_queue_impl.h.

1042 {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 1032 of file _concurrent_queue_impl.h.

1032  {
1033  assign(other);
1034  return *this;
1035  }
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 1011 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.