SGIextensions


Classes

class  __gnu_cxx::unary_compose< _Operation1, _Operation2 >
 An SGI extension . More...
class  __gnu_cxx::binary_compose< _Operation1, _Operation2, _Operation3 >
 An SGI extension . More...
struct  __gnu_cxx::select1st< _Pair >
 An SGI extension . More...
struct  __gnu_cxx::select2nd< _Pair >
 An SGI extension . More...
struct  __gnu_cxx::project1st< _Arg1, _Arg2 >
 An SGI extension . More...
struct  __gnu_cxx::project2nd< _Arg1, _Arg2 >
 An SGI extension . More...
struct  __gnu_cxx::constant_void_fun< _Result >
 An SGI extension . More...
struct  __gnu_cxx::constant_unary_fun< _Result, _Argument >
 An SGI extension . More...
struct  __gnu_cxx::constant_binary_fun< _Result, _Arg1, _Arg2 >
 An SGI extension . More...
class  __gnu_cxx::subtractive_rng
class  __gnu_cxx::hash_map< _Key, _Tp, _HashFcn, _EqualKey, _Alloc >
class  __gnu_cxx::hash_multimap< _Key, _Tp, _HashFcn, _EqualKey, _Alloc >
class  __gnu_cxx::hash_set< _Value, _HashFcn, _EqualKey, _Alloc >
class  __gnu_cxx::hash_multiset< _Value, _HashFcn, _EqualKey, _Alloc >
struct  __gnu_cxx::temporary_buffer< _ForwardIterator, _Tp >
struct  __gnu_cxx::rb_tree< _Key, _Value, _KeyOfValue, _Compare, _Alloc >
class  __gnu_cxx::rope< _CharT, _Alloc >
class  __gnu_cxx::slist< _Tp, _Alloc >
bitset< _Nb > & _GLIBCXX_STD::bitset::_Unchecked_set (size_t __pos)
bitset< _Nb > & _GLIBCXX_STD::bitset::_Unchecked_set (size_t __pos, int __val)
bitset< _Nb > & _GLIBCXX_STD::bitset::_Unchecked_reset (size_t __pos)
bitset< _Nb > & _GLIBCXX_STD::bitset::_Unchecked_flip (size_t __pos)
bool _GLIBCXX_STD::bitset::_Unchecked_test (size_t __pos) const

Functions

template<typename _Tp>
const _Tp & std::__median (const _Tp &__a, const _Tp &__b, const _Tp &__c)
 Find the median of three values.
template<typename _Tp, typename _Compare>
const _Tp & std::__median (const _Tp &__a, const _Tp &__b, const _Tp &__c, _Compare __comp)
 Find the median of three values using a predicate for comparison.
size_t _GLIBCXX_STD::bitset::_Find_first () const
 Finds the index of the first "on" bit.
size_t _GLIBCXX_STD::bitset::_Find_next (size_t __prev) const
 Finds the index of the next "on" bit after prev.
template<typename _InputIterator, typename _Size, typename _OutputIterator>
pair< _InputIterator, _OutputIterator > __gnu_cxx::copy_n (_InputIterator __first, _Size __count, _OutputIterator __result)
 Copies the range [first,first+count) into [result,result+count).
template<typename _InputIterator1, typename _InputIterator2>
int __gnu_cxx::lexicographical_compare_3way (_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _InputIterator2 __last2)
 memcmp on steroids.
template<typename _ForwardIterator, typename _OutputIterator, typename _Distance>
_OutputIterator __gnu_cxx::random_sample_n (_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __out, const _Distance __n)
template<typename _ForwardIterator, typename _OutputIterator, typename _Distance, typename _RandomNumberGenerator>
_OutputIterator __gnu_cxx::random_sample_n (_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __out, const _Distance __n, _RandomNumberGenerator &__rand)
template<typename _InputIterator, typename _RandomAccessIterator>
_RandomAccessIterator __gnu_cxx::random_sample (_InputIterator __first, _InputIterator __last, _RandomAccessIterator __out_first, _RandomAccessIterator __out_last)
template<typename _InputIterator, typename _RandomAccessIterator, typename _RandomNumberGenerator>
_RandomAccessIterator __gnu_cxx::random_sample (_InputIterator __first, _InputIterator __last, _RandomAccessIterator __out_first, _RandomAccessIterator __out_last, _RandomNumberGenerator &__rand)
template<typename _RandomAccessIterator>
bool __gnu_cxx::is_heap (_RandomAccessIterator __first, _RandomAccessIterator __last)
template<typename _RandomAccessIterator, typename _StrictWeakOrdering>
bool __gnu_cxx::is_heap (_RandomAccessIterator __first, _RandomAccessIterator __last, _StrictWeakOrdering __comp)
template<typename _ForwardIterator>
bool __gnu_cxx::is_sorted (_ForwardIterator __first, _ForwardIterator __last)
template<typename _ForwardIterator, typename _StrictWeakOrdering>
bool __gnu_cxx::is_sorted (_ForwardIterator __first, _ForwardIterator __last, _StrictWeakOrdering __comp)
template<class _Tp>
_Tp __gnu_cxx::identity_element (std::plus< _Tp >)
 An SGI extension .
template<class _Tp>
_Tp __gnu_cxx::identity_element (std::multiplies< _Tp >)
 An SGI extension .
template<class _Operation1, class _Operation2>
unary_compose< _Operation1,
_Operation2 > 
__gnu_cxx::compose1 (const _Operation1 &__fn1, const _Operation2 &__fn2)
 An SGI extension .
template<class _Operation1, class _Operation2, class _Operation3>
binary_compose< _Operation1,
_Operation2, _Operation3 > 
__gnu_cxx::compose2 (const _Operation1 &__fn1, const _Operation2 &__fn2, const _Operation3 &__fn3)
 An SGI extension .
template<class _Result>
constant_void_fun< _Result > __gnu_cxx::constant0 (const _Result &__val)
 An SGI extension .
template<class _Result>
constant_unary_fun< _Result,
_Result > 
__gnu_cxx::constant1 (const _Result &__val)
 An SGI extension .
template<class _Result>
constant_binary_fun< _Result,
_Result, _Result > 
__gnu_cxx::constant2 (const _Result &__val)
 An SGI extension .
template<typename _InputIterator, typename _Distance>
void __gnu_cxx::distance (_InputIterator __first, _InputIterator __last, _Distance &__n)
template<typename _InputIter, typename _Size, typename _ForwardIter>
pair< _InputIter, _ForwardIter > __gnu_cxx::uninitialized_copy_n (_InputIter __first, _Size __count, _ForwardIter __result)
 Copies the range [first,last) into result.
template<typename _Tp, typename _Integer, typename _MonoidOperation>
_Tp __gnu_cxx::power (_Tp __x, _Integer __n, _MonoidOperation __monoid_op)
template<typename _Tp, typename _Integer>
_Tp __gnu_cxx::power (_Tp __x, _Integer __n)
template<typename _ForwardIter, typename _Tp>
void __gnu_cxx::iota (_ForwardIter __first, _ForwardIter __last, _Tp __value)

Detailed Description

The identity_element functions are not part of the C++ standard; SGI provided them as an extension. Its argument is an operation, and its return value is the identity element for that operation. It is overloaded for addition and multiplication, and you can overload it for your own nefarious operations.

As an extension to the binders, SGI provided composition functors and wrapper functions to aid in their creation. The unary_compose functor is constructed from two functions/functors, f and g. Calling operator() with a single argument x returns f(g(x)). The function compose1 takes the two functions and constructs a unary_compose variable for you.

binary_compose is constructed from three functors, f, g1, and g2. Its operator() returns f(g1(x),g2(x)). The function takes f, g1, and g2, and constructs the binary_compose instance for you. For example, if f returns an int, then

  int answer = (compose2(f,g1,g2))(x);
is equivalent to
  int temp1 = g1(x);
  int temp2 = g2(x);
  int answer = f(temp1,temp2);
But the first form is more compact, and can be passed around as a functor to other algorithms.

As an extension, SGI provided a functor called identity. When a functor is required but no operations are desired, this can be used as a pass-through. Its operator() returns its argument unchanged.

select1st and select2nd are extensions provided by SGI. Their operator()s take a std::pair as an argument, and return either the first member or the second member, respectively. They can be used (especially with the composition functors) to "strip" data from a sequence before performing the remainder of an algorithm.

The operator() of the project1st functor takes two arbitrary arguments and returns the first one, while project2nd returns the second one. They are extensions provided by SGI.

These three functors are each constructed from a single arbitrary variable/value. Later, their operator()s completely ignore any arguments passed, and return the stored value.

The helper creator functions constant0, constant1, and constant2 each take a "result" argument and construct variables of the appropriate functor type.


Function Documentation

template<typename _Tp, typename _Compare>
const _Tp& std::__median ( const _Tp &  __a,
const _Tp &  __b,
const _Tp &  __c,
_Compare  __comp 
) [inline]

Find the median of three values using a predicate for comparison.

Parameters:
a A value.
b A value.
c A value.
comp A binary predicate.
Returns:
One of a, b or c.
If {l,m,n} is some convolution of {a,b,c} such that comp(l,m) and comp(m,n) are both true then the value returned will be m. This is an SGI extension.

Definition at line 121 of file stl_algo.h.

References __glibcxx_function_requires.

template<typename _Tp>
const _Tp& std::__median ( const _Tp &  __a,
const _Tp &  __b,
const _Tp &  __c 
) [inline]

Find the median of three values.

Parameters:
a A value.
b A value.
c A value.
Returns:
One of a, b or c.
If {l,m,n} is some convolution of {a,b,c} such that l<=m<=n then the value returned will be m. This is an SGI extension.

Definition at line 87 of file stl_algo.h.

References __glibcxx_function_requires.

Referenced by std::__introsort_loop(), and std::nth_element().

template<size_t _Nb>
size_t _GLIBCXX_STD::bitset< _Nb >::_Find_first (  )  const [inline, inherited]

Finds the index of the first "on" bit.

Returns:
The index of the first bit set, or size() if not found.
See also:
_Find_next

Definition at line 1128 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_find_first().

template<size_t _Nb>
size_t _GLIBCXX_STD::bitset< _Nb >::_Find_next ( size_t  __prev  )  const [inline, inherited]

Finds the index of the next "on" bit after prev.

Returns:
The index of the next bit set, or size() if not found.
Parameters:
prev Where to start searching.
See also:
_Find_first

Definition at line 1139 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_do_find_next().

template<size_t _Nb>
bitset<_Nb>& _GLIBCXX_STD::bitset< _Nb >::_Unchecked_flip ( size_t  __pos  )  [inline, inherited]

Definition at line 880 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_getword(), and _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_S_maskbit().

Referenced by _GLIBCXX_STD::bitset< _Nb >::flip().

template<size_t _Nb>
bitset<_Nb>& _GLIBCXX_STD::bitset< _Nb >::_Unchecked_reset ( size_t  __pos  )  [inline, inherited]

Definition at line 873 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_getword(), and _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_S_maskbit().

Referenced by _GLIBCXX_STD::bitset< _Nb >::reset().

template<size_t _Nb>
bitset<_Nb>& _GLIBCXX_STD::bitset< _Nb >::_Unchecked_set ( size_t  __pos,
int  __val 
) [inline, inherited]

Definition at line 863 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_getword(), and _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_S_maskbit().

template<size_t _Nb>
bitset<_Nb>& _GLIBCXX_STD::bitset< _Nb >::_Unchecked_set ( size_t  __pos  )  [inline, inherited]

These versions of single-bit set, reset, flip, and test are extensions from the SGI version. They do no range checking.

Definition at line 856 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_M_getword(), and _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_S_maskbit().

Referenced by _GLIBCXX_STD::bitset< _Nb >::_M_copy_from_string(), and _GLIBCXX_STD::bitset< _Nb >::set().

template<size_t _Nb>
bool _GLIBCXX_STD::bitset< _Nb >::_Unchecked_test ( size_t  __pos  )  const [inline, inherited]

Definition at line 887 of file bitset.

References _GLIBCXX_STD::_Base_bitset< _GLIBCXX_BITSET_WORDS(_Nb)>::_S_maskbit().

Referenced by _GLIBCXX_STD::bitset< _Nb >::_M_copy_to_string(), _GLIBCXX_STD::bitset< _Nb >::operator[](), and _GLIBCXX_STD::bitset< _Nb >::test().

template<class _Operation1, class _Operation2>
unary_compose<_Operation1, _Operation2> __gnu_cxx::compose1 ( const _Operation1 &  __fn1,
const _Operation2 &  __fn2 
) [inline]

An SGI extension .

Definition at line 147 of file ext/functional.

template<class _Operation1, class _Operation2, class _Operation3>
binary_compose<_Operation1, _Operation2, _Operation3> __gnu_cxx::compose2 ( const _Operation1 &  __fn1,
const _Operation2 &  __fn2,
const _Operation3 &  __fn3 
) [inline]

An SGI extension .

Definition at line 174 of file ext/functional.

template<class _Result>
constant_void_fun<_Result> __gnu_cxx::constant0 ( const _Result &  __val  )  [inline]

An SGI extension .

Definition at line 328 of file ext/functional.

template<class _Result>
constant_unary_fun<_Result, _Result> __gnu_cxx::constant1 ( const _Result &  __val  )  [inline]

An SGI extension .

Definition at line 334 of file ext/functional.

template<class _Result>
constant_binary_fun<_Result,_Result,_Result> __gnu_cxx::constant2 ( const _Result &  __val  )  [inline]

An SGI extension .

Definition at line 340 of file ext/functional.

template<typename _InputIterator, typename _Size, typename _OutputIterator>
pair<_InputIterator, _OutputIterator> __gnu_cxx::copy_n ( _InputIterator  __first,
_Size  __count,
_OutputIterator  __result 
) [inline]

Copies the range [first,first+count) into [result,result+count).

Parameters:
first An input iterator.
count The number of elements to copy.
result An output iterator.
Returns:
A std::pair composed of first+count and result+count.
This is an SGI extension. This inline function will boil down to a call to memmove whenever possible. Failing that, if random access iterators are passed, then the loop count will be known (and therefore a candidate for compiler optimizations such as unrolling).

Definition at line 123 of file ext/algorithm.

References __gnu_cxx::__copy_n(), __glibcxx_function_requires, and std::__iterator_category().

Referenced by __gnu_cxx::rope< _CharT, _Alloc >::_S_flatten().

template<typename _InputIterator, typename _Distance>
void __gnu_cxx::distance ( _InputIterator  __first,
_InputIterator  __last,
_Distance &  __n 
) [inline]

This is an SGI extension.

Definition at line 108 of file ext/iterator.

References __gnu_cxx::__distance(), and std::__iterator_category().

Referenced by __gnu_cxx::hashtable< _Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc >::insert_equal(), and __gnu_cxx::hashtable< _Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc >::insert_unique().

template<class _Tp>
_Tp __gnu_cxx::identity_element ( std::multiplies< _Tp >   )  [inline]

An SGI extension .

Definition at line 95 of file ext/functional.

template<class _Tp>
_Tp __gnu_cxx::identity_element ( std::plus< _Tp >   )  [inline]

An SGI extension .

Definition at line 89 of file ext/functional.

template<typename _ForwardIter, typename _Tp>
void __gnu_cxx::iota ( _ForwardIter  __first,
_ForwardIter  __last,
_Tp  __value 
)

This is an SGI extension.

Definition at line 137 of file ext/numeric.

References __glibcxx_function_requires.

template<typename _RandomAccessIterator, typename _StrictWeakOrdering>
bool __gnu_cxx::is_heap ( _RandomAccessIterator  __first,
_RandomAccessIterator  __last,
_StrictWeakOrdering  __comp 
) [inline]

This is an SGI extension.

Definition at line 455 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, and std::__is_heap().

template<typename _RandomAccessIterator>
bool __gnu_cxx::is_heap ( _RandomAccessIterator  __first,
_RandomAccessIterator  __last 
) [inline]

This is an SGI extension.

Definition at line 436 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, and std::__is_heap().

template<typename _ForwardIterator, typename _StrictWeakOrdering>
bool __gnu_cxx::is_sorted ( _ForwardIterator  __first,
_ForwardIterator  __last,
_StrictWeakOrdering  __comp 
)

This is an SGI extension.

Definition at line 505 of file ext/algorithm.

References __glibcxx_function_requires, and __glibcxx_requires_valid_range.

template<typename _ForwardIterator>
bool __gnu_cxx::is_sorted ( _ForwardIterator  __first,
_ForwardIterator  __last 
)

This is an SGI extension.

Definition at line 480 of file ext/algorithm.

References __glibcxx_function_requires, and __glibcxx_requires_valid_range.

template<typename _InputIterator1, typename _InputIterator2>
int __gnu_cxx::lexicographical_compare_3way ( _InputIterator1  __first1,
_InputIterator1  __last1,
_InputIterator2  __first2,
_InputIterator2  __last2 
)

memcmp on steroids.

Parameters:
first1 An input iterator.
last1 An input iterator.
first2 An input iterator.
last2 An input iterator.
Returns:
An int, as with memcmp.
The return value will be less than zero if the first range is "lexigraphically less than" the second, greater than zero if the second range is "lexigraphically less than" the first, and zero otherwise. This is an SGI extension.

Definition at line 202 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, and __gnu_cxx::__lexicographical_compare_3way().

Referenced by __gnu_cxx::rope< _CharT, _Alloc >::_S_compare().

template<typename _Tp, typename _Integer>
_Tp __gnu_cxx::power ( _Tp  __x,
_Integer  __n 
) [inline]

This is an SGI extension.

Definition at line 126 of file ext/numeric.

References __gnu_cxx::__power().

template<typename _Tp, typename _Integer, typename _MonoidOperation>
_Tp __gnu_cxx::power ( _Tp  __x,
_Integer  __n,
_MonoidOperation  __monoid_op 
) [inline]

This is an SGI extension.

Definition at line 116 of file ext/numeric.

References __gnu_cxx::__power().

Referenced by __gnu_cxx::rope< _CharT, _Alloc >::rope().

template<typename _InputIterator, typename _RandomAccessIterator, typename _RandomNumberGenerator>
_RandomAccessIterator __gnu_cxx::random_sample ( _InputIterator  __first,
_InputIterator  __last,
_RandomAccessIterator  __out_first,
_RandomAccessIterator  __out_last,
_RandomNumberGenerator &  __rand 
) [inline]

This is an SGI extension.

Definition at line 412 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, and __gnu_cxx::__random_sample().

template<typename _InputIterator, typename _RandomAccessIterator>
_RandomAccessIterator __gnu_cxx::random_sample ( _InputIterator  __first,
_InputIterator  __last,
_RandomAccessIterator  __out_first,
_RandomAccessIterator  __out_last 
) [inline]

This is an SGI extension.

Definition at line 389 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, and __gnu_cxx::__random_sample().

template<typename _ForwardIterator, typename _OutputIterator, typename _Distance, typename _RandomNumberGenerator>
_OutputIterator __gnu_cxx::random_sample_n ( _ForwardIterator  __first,
_ForwardIterator  __last,
_OutputIterator  __out,
const _Distance  __n,
_RandomNumberGenerator &  __rand 
)

This is an SGI extension.

Definition at line 302 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, std::distance(), and std::min().

template<typename _ForwardIterator, typename _OutputIterator, typename _Distance>
_OutputIterator __gnu_cxx::random_sample_n ( _ForwardIterator  __first,
_ForwardIterator  __last,
_OutputIterator  __out,
const _Distance  __n 
)

This is an SGI extension.

Definition at line 268 of file ext/algorithm.

References __glibcxx_function_requires, __glibcxx_requires_valid_range, std::distance(), and std::min().

template<typename _InputIter, typename _Size, typename _ForwardIter>
pair<_InputIter, _ForwardIter> __gnu_cxx::uninitialized_copy_n ( _InputIter  __first,
_Size  __count,
_ForwardIter  __result 
) [inline]

Copies the range [first,last) into result.

Parameters:
first An input iterator.
last An input iterator.
result An output iterator.
Returns:
result + (first - last)
Like copy(), but does not require an initialized output range.

Definition at line 125 of file ext/memory.

References std::__iterator_category(), and __gnu_cxx::__uninitialized_copy_n().

Referenced by __gnu_cxx::__uninitialized_copy_n_a(), __gnu_cxx::rope< _CharT, _Alloc >::_S_destr_leaf_concat_char_iter(), and __gnu_cxx::_Rope_RopeSubstring< _CharT, _Alloc >::operator()().


Generated on Tue Feb 2 16:57:31 2010 for GNU C++ STL by  doxygen 1.4.7