#include <parallel/set_operations.h>
|
| __union_func (_Compare __comp) |
|
_OutputIterator | _M_invoke (_IIter __a, const _IIter __b, _IIter __c, const _IIter __d, _OutputIterator __r) const |
|
_DifferenceType | __count (_IIter __a, _IIter __b, _IIter __c, _IIter __d) const |
|
_OutputIterator | __first_empty (_IIter __c, _IIter __d, _OutputIterator __out) const |
|
_OutputIterator | __second_empty (_IIter __a, _IIter __b, _OutputIterator __out) const |
|
template<class _IIter , class _OutputIterator , class _Compare >
template<class _IIter , class _OutputIterator , class _Compare >
_Compare _M_comp
Definition: set_operations.h:284
template<class _IIter , class _OutputIterator , class _Compare >
318 while (__a != __b && __c != __d)
332 __counter += (__b - __a);
333 __counter += (__d - __c);
std::iterator_traits< _IIter >::difference_type _DifferenceType
Definition: set_operations.h:280
_Compare _M_comp
Definition: set_operations.h:284
template<class _IIter , class _OutputIterator , class _Compare >
_OutputIterator __gnu_parallel::__union_func< _IIter, _OutputIterator, _Compare >::__first_empty |
( |
_IIter |
__c, |
|
|
_IIter |
__d, |
|
|
_OutputIterator |
__out |
|
) |
| const |
|
inline |
339 {
return std::copy(__c, __d, __out); }
template<class _IIter , class _OutputIterator , class _Compare >
_OutputIterator __gnu_parallel::__union_func< _IIter, _OutputIterator, _Compare >::__second_empty |
( |
_IIter |
__a, |
|
|
_IIter |
__b, |
|
|
_OutputIterator |
__out |
|
) |
| const |
|
inline |
343 {
return std::copy(__a, __b, __out); }
template<class _IIter , class _OutputIterator , class _Compare >
_OutputIterator __gnu_parallel::__union_func< _IIter, _OutputIterator, _Compare >::_M_invoke |
( |
_IIter |
__a, |
|
|
const _IIter |
__b, |
|
|
_IIter |
__c, |
|
|
const _IIter |
__d, |
|
|
_OutputIterator |
__r |
|
) |
| const |
|
inline |
290 while (__a != __b && __c != __d)
310 return std::copy(__c, __d, std::copy(__a, __b, __r));
_Compare _M_comp
Definition: set_operations.h:284
template<class _IIter , class _OutputIterator , class _Compare >
The documentation for this struct was generated from the following file: