Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

__gnu_parallel::guarded_iterator(3) [debian man page]

__gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >(3cx__gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >(3cxx)

NAME
__gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator > - SYNOPSIS
Public Member Functions guarded_iterator (RandomAccessIterator begin, RandomAccessIterator end, Comparator &comp) operator RandomAccessIterator () std::iterator_traits < RandomAccessIterator > ::value_type & operator* ()" guarded_iterator < RandomAccessIterator, Comparator > & operator++ ()" Friends bool operator (guarded_iterator< RandomAccessIterator, Comparator > &bi1, guarded_iterator< RandomAccessIterator, Comparator > &bi2) bool operator (guarded_iterator< RandomAccessIterator, Comparator > &bi1, guarded_iterator< RandomAccessIterator, Comparator > &bi2) Detailed Description template<typename RandomAccessIterator, typename Comparator>class __gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator > Iterator wrapper supporting an implicit supremum at the end of the sequence, dominating all comparisons. The implicit supremum comes with a performance cost. Deriving from RandomAccessIterator is not possible since RandomAccessIterator need not be a class. Definition at line 84 of file multiway_merge.h. Constructor &; Destructor Documentation template<typename RandomAccessIterator , typename Comparator > __gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >::guarded_iterator (RandomAccessIteratorbegin, RandomAccessIteratorend, Comparator &comp) [inline] Constructor. Sets iterator to beginning of sequence. Parameters: begin Begin iterator of sequence. end End iterator of sequence. comp Comparator provided for associated overloaded compare operators. Definition at line 102 of file multiway_merge.h. Member Function Documentation template<typename RandomAccessIterator , typename Comparator > __gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >::operator RandomAccessIterator () [inline] Convert to wrapped iterator. Returns: Wrapped iterator. Definition at line 124 of file multiway_merge.h. template<typename RandomAccessIterator , typename Comparator > std::iterator_traits<RandomAccessIterator>::value_type& __gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >::operator* () [inline] Dereference operator. Returns: Referenced element. Definition at line 119 of file multiway_merge.h. template<typename RandomAccessIterator , typename Comparator > guarded_iterator<RandomAccessIterator, Comparator>& __gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >::operator++ () [inline] Pre-increment operator. Returns: This. Definition at line 110 of file multiway_merge.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Thu Au__gnu_parallel::guarded_iterator< RandomAccessIterator, Comparator >(3cxx)

Check Out this Related Man Page

__gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >(3cxx)  __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >(3cxx)

NAME
__gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator > - SYNOPSIS
Public Types typedef traits_type::difference_type difference_type" typedef std::iterator_traits < RandomAccessIterator > traits_type" typedef traits_type::value_type value_type Public Member Functions DRandomShufflingGlobalData (RandomAccessIterator &_source) Public Attributes thread_index_t * bin_proc difference_type ** dist int num_bins int num_bits RandomAccessIterator & source difference_type * starts value_type ** temporaries Detailed Description template<typename RandomAccessIterator>struct __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator > Data known to every thread participating in __gnu_parallel::parallel_random_shuffle(). Definition at line 52 of file random_shuffle.h. Constructor &; Destructor Documentation template<typename RandomAccessIterator> __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::DRandomShufflingGlobalData (RandomAccessIterator &_source) [inline] Constructor. Definition at line 83 of file random_shuffle.h. Member Data Documentation template<typename RandomAccessIterator> thread_index_t* __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::bin_proc Number of the thread that will further process the corresponding bin. Definition at line 74 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(). template<typename RandomAccessIterator> difference_type** __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::dist Two-dimensional array to hold the thread-bin distribution. Dimensions (num_threads + 1) x (num_bins + 1). Definition at line 67 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(), and __gnu_parallel::parallel_random_shuffle_drs_pu(). template<typename RandomAccessIterator> int __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::num_bins Number of bins to distribute to. Definition at line 77 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(), and __gnu_parallel::parallel_random_shuffle_drs_pu(). template<typename RandomAccessIterator> int __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::num_bits Number of bits needed to address the bins. Definition at line 80 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(), and __gnu_parallel::parallel_random_shuffle_drs_pu(). template<typename RandomAccessIterator> RandomAccessIterator& __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::source Begin iterator of the source. Definition at line 59 of file random_shuffle.h. template<typename RandomAccessIterator> difference_type* __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::starts Start indexes of the threads' chunks. Definition at line 70 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(), and __gnu_parallel::parallel_random_shuffle_drs_pu(). template<typename RandomAccessIterator> value_type** __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >::temporaries Temporary arrays for each thread. Definition at line 62 of file random_shuffle.h. Referenced by __gnu_parallel::parallel_random_shuffle_drs(). Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Thu Aug __gnu_parallel::DRandomShufflingGlobalData< RandomAccessIterator >(3cxx)
Man Page