__gnu_parallel::_LoserTreeTraits< _Tp >(3) Library Functions Manual __gnu_parallel::_LoserTreeTraits< _Tp >(3)

__gnu_parallel::_LoserTreeTraits< _Tp > - Traits for determining whether the loser tree should use pointers or copies.

#include <multiway_merge.h>


static const bool _M_use_pointer
True iff to use pointers instead of values in loser trees.

struct __gnu_parallel::_LoserTreeTraits< _Tp >"Traits for determining whether the loser tree should use pointers or copies.

The field '_M_use_pointer' is used to determine whether to use pointers in he loser trees or whether to copy the values into the loser tree.

The default behavior is to use pointers if the data type is 4 times as big as the pointer to it.

Specialize for your data type to customize the behavior.

Example:

template<> struct _LoserTreeTraits<int> { static const bool _M_use_pointer = false; };

template<> struct _LoserTreeTraits<heavyweight_type> { static const bool _M_use_pointer = true; };

Parameters

_Tp type to give the loser tree traits for.

True iff to use pointers instead of values in loser trees. The default behavior is to use pointers if the data type is four times as big as the pointer to it.

Generated automatically by Doxygen for libstdc++ from the source code.

libstdc++