Update contrib.
9 /** @fn std::for_each(_InputIter __first, _InputIter __last, _Function __f)
10 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
12 The Symbian implementation of this API fully supports all STL functionality.
22 /** @fn std::count_if(_InputIter __first, _InputIter __last, _Predicate __pred)
23 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
25 The Symbian implementation of this API fully supports all STL functionality.
35 /** @fn std::adjacent_find(_ForwardIter __first, _ForwardIter __last, _BinaryPredicate __binary_pred)
36 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
38 The Symbian implementation of this API fully supports all STL functionality.
44 @param __binary_pred -
48 /** @fn std::adjacent_find(_ForwardIter __first, _ForwardIter __last)
49 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
51 The Symbian implementation of this API fully supports all STL functionality.
60 /** @fn std::count(_InputIter __first, _InputIter __last, const _Tp &__val, _Size &__n)
61 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
63 The Symbian implementation of this API fully supports all STL functionality.
74 /** @fn std::count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size &__n)
75 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
77 The Symbian implementation of this API fully supports all STL functionality.
88 /** @fn std::find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2)
89 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
91 The Symbian implementation of this API fully supports all STL functionality.
102 /** @fn std::find_first_of(_InputIter __first1, _InputIter __last1, _ForwardIter __first2, _ForwardIter __last2, _BinaryPredicate __comp)
103 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
105 The Symbian implementation of this API fully supports all STL functionality.
108 @externallyDefinedApi
117 /** @fn std::swap_ranges(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2)
118 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
120 The Symbian implementation of this API fully supports all STL functionality.
123 @externallyDefinedApi
130 /** @fn std::transform(_InputIter __first, _InputIter __last, _OutputIter __result, _UnaryOperation __opr)
131 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
133 The Symbian implementation of this API fully supports all STL functionality.
136 @externallyDefinedApi
144 /** @fn std::transform(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _OutputIter __result, _BinaryOperation __binary_op)
145 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
147 The Symbian implementation of this API fully supports all STL functionality.
150 @externallyDefinedApi
159 /** @fn std::replace_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred, const _Tp &__new_value)
160 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
162 The Symbian implementation of this API fully supports all STL functionality.
165 @externallyDefinedApi
173 /** @fn std::replace_copy(_InputIter __first, _InputIter __last, _OutputIter __result, const _Tp &__old_value, const _Tp &__new_value)
174 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
176 The Symbian implementation of this API fully supports all STL functionality.
179 @externallyDefinedApi
188 /** @fn std::replace_copy_if(_Iterator __first, _Iterator __last, _OutputIter __result, _Predicate __pred, const _Tp &__new_value)
189 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
191 The Symbian implementation of this API fully supports all STL functionality.
194 @externallyDefinedApi
203 /** @fn std::generate(_ForwardIter __first, _ForwardIter __last, _Generator __gen)
204 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
206 The Symbian implementation of this API fully supports all STL functionality.
209 @externallyDefinedApi
216 /** @fn std::generate_n(_OutputIter __first, _Size __n, _Generator __gen)
217 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
219 The Symbian implementation of this API fully supports all STL functionality.
222 @externallyDefinedApi
229 /** @fn std::remove_copy(_InputIter __first, _InputIter __last, _OutputIter __result, const _Tp &__val)
230 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
232 The Symbian implementation of this API fully supports all STL functionality.
235 @externallyDefinedApi
243 /** @fn std::remove_copy_if(_InputIter __first, _InputIter __last, _OutputIter __result, _Predicate __pred)
244 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
246 The Symbian implementation of this API fully supports all STL functionality.
249 @externallyDefinedApi
257 /** @fn std::remove(_ForwardIter __first, _ForwardIter __last, const _Tp &__val)
258 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
260 The Symbian implementation of this API fully supports all STL functionality.
263 @externallyDefinedApi
270 /** @fn std::remove_if(_ForwardIter __first, _ForwardIter __last, _Predicate __pred)
271 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
273 The Symbian implementation of this API fully supports all STL functionality.
276 @externallyDefinedApi
283 /** @fn std::unique(_ForwardIter __first, _ForwardIter __last)
284 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
286 The Symbian implementation of this API fully supports all STL functionality.
289 @externallyDefinedApi
295 /** @fn std::unique(_ForwardIter __first, _ForwardIter __last, _BinaryPredicate __binary_pred)
296 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
298 The Symbian implementation of this API fully supports all STL functionality.
301 @externallyDefinedApi
304 @param __binary_pred -
308 /** @fn std::__reverse(_BidirectionalIter __first, _BidirectionalIter __last, const bidirectional_iterator_tag &)
309 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
311 The Symbian implementation of this API fully supports all STL functionality.
314 @externallyDefinedApi
321 /** @fn std::__reverse(_RandomAccessIter __first, _RandomAccessIter __last, const random_access_iterator_tag &)
322 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
324 The Symbian implementation of this API fully supports all STL functionality.
327 @externallyDefinedApi
334 /** @fn std::reverse(_BidirectionalIter __first, _BidirectionalIter __last)
335 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
337 The Symbian implementation of this API fully supports all STL functionality.
340 @externallyDefinedApi
346 /** @fn std::reverse_copy(_BidirectionalIter __first, _BidirectionalIter __last, _OutputIter __result)
347 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
349 The Symbian implementation of this API fully supports all STL functionality.
352 @externallyDefinedApi
359 /** @fn std::rotate_copy(_ForwardIter __first, _ForwardIter __middle, _ForwardIter __last, _OutputIter __result)
360 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
362 The Symbian implementation of this API fully supports all STL functionality.
365 @externallyDefinedApi
373 /** @fn std::lower_bound(_ForwardIter __first, _ForwardIter __last, const _Tp &__val)
374 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
376 The Symbian implementation of this API fully supports all STL functionality.
379 @externallyDefinedApi
386 /** @fn std::lower_bound(_ForwardIter __first, _ForwardIter __last, const _Tp &__val, _Compare __comp)
387 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
389 The Symbian implementation of this API fully supports all STL functionality.
392 @externallyDefinedApi
400 /** @fn std::upper_bound(_ForwardIter __first, _ForwardIter __last, const _Tp &__val)
401 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
403 The Symbian implementation of this API fully supports all STL functionality.
406 @externallyDefinedApi
413 /** @fn std::upper_bound(_ForwardIter __first, _ForwardIter __last, const _Tp &__val, _Compare __comp)
414 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
416 The Symbian implementation of this API fully supports all STL functionality.
419 @externallyDefinedApi
427 /** @fn std::equal_range(_ForwardIter __first, _ForwardIter __last, const _Tp &__val)
428 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
430 The Symbian implementation of this API fully supports all STL functionality.
433 @externallyDefinedApi
440 /** @fn std::equal_range(_ForwardIter __first, _ForwardIter __last, const _Tp &__val, _Compare __comp)
441 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
443 The Symbian implementation of this API fully supports all STL functionality.
446 @externallyDefinedApi
454 /** @fn std::binary_search(_ForwardIter __first, _ForwardIter __last, const _Tp &__val)
455 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
457 The Symbian implementation of this API fully supports all STL functionality.
460 @externallyDefinedApi
467 /** @fn std::binary_search(_ForwardIter __first, _ForwardIter __last, const _Tp &__val, _Compare __comp)
468 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
470 The Symbian implementation of this API fully supports all STL functionality.
473 @externallyDefinedApi
481 /** @fn std::is_sorted(_ForwardIter __first, _ForwardIter __last)
482 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
484 The Symbian implementation of this API fully supports all STL functionality.
487 @externallyDefinedApi
493 /** @fn std::is_sorted(_ForwardIter __first, _ForwardIter __last, _StrictWeakOrdering __comp)
494 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
496 The Symbian implementation of this API fully supports all STL functionality.
499 @externallyDefinedApi
509 /** @fn std::search(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2)
510 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
512 The Symbian implementation of this API fully supports all STL functionality.
515 @externallyDefinedApi
523 /** @fn std::search_n(_ForwardIter __first, _ForwardIter __last, _Integer __count, const _Tp &__val)
524 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
526 The Symbian implementation of this API fully supports all STL functionality.
529 @externallyDefinedApi
537 /** @fn std::search_n(_ForwardIter __first, _ForwardIter __last, _Integer __count, const _Tp &__val, _BinaryPred __binary_pred)
538 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
540 The Symbian implementation of this API fully supports all STL functionality.
543 @externallyDefinedApi
548 @param __binary_pred -
552 /** @fn std::find_end(_ForwardIter1 __first1, _ForwardIter1 __last1, _ForwardIter2 __first2, _ForwardIter2 __last2)
553 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
555 The Symbian implementation of this API fully supports all STL functionality.
558 @externallyDefinedApi
566 /** @fn std::unique_copy(_InputIter __first, _InputIter __last, _OutputIter __result)
567 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
569 The Symbian implementation of this API fully supports all STL functionality.
572 @externallyDefinedApi
579 /** @fn std::unique_copy(_InputIter __first, _InputIter __last, _OutputIter __result, _BinaryPredicate __binary_pred)
580 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
582 The Symbian implementation of this API fully supports all STL functionality.
585 @externallyDefinedApi
589 @param __binary_pred -
593 /** @fn std::rotate(_ForwardIter __first, _ForwardIter __middle, _ForwardIter __last)
594 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
596 The Symbian implementation of this API fully supports all STL functionality.
599 @externallyDefinedApi
606 /** @fn std::random_shuffle(_RandomAccessIter __first, _RandomAccessIter __last)
607 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
609 The Symbian implementation of this API fully supports all STL functionality.
612 @externallyDefinedApi
618 /** @fn std::random_shuffle(_RandomAccessIter __first, _RandomAccessIter __last, _RandomNumberGenerator &__rand)
619 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
621 The Symbian implementation of this API fully supports all STL functionality.
624 @externallyDefinedApi
631 /** @fn std::random_sample_n(_ForwardIter __first, _ForwardIter __last, _OutputIter __out_ite, const _Distance __n)
632 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
634 The Symbian implementation of this API fully supports all STL functionality.
637 @externallyDefinedApi
645 /** @fn std::random_sample_n(_ForwardIter __first, _ForwardIter __last, _OutputIter __out_ite, const _Distance __n, _RandomNumberGenerator &__rand)
646 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
648 The Symbian implementation of this API fully supports all STL functionality.
651 @externallyDefinedApi
660 /** @fn std::random_sample(_InputIter __first, _InputIter __last, _RandomAccessIter __out_first, _RandomAccessIter __out_last)
661 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
663 The Symbian implementation of this API fully supports all STL functionality.
666 @externallyDefinedApi
674 /** @fn std::random_sample(_InputIter __first, _InputIter __last, _RandomAccessIter __out_first, _RandomAccessIter __out_last, _RandomNumberGenerator &__rand)
675 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
677 The Symbian implementation of this API fully supports all STL functionality.
680 @externallyDefinedApi
689 /** @fn std::partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred)
690 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
692 The Symbian implementation of this API fully supports all STL functionality.
695 @externallyDefinedApi
702 /** @fn std::stable_partition(_ForwardIter __first, _ForwardIter __last, _Predicate __pred)
703 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
705 The Symbian implementation of this API fully supports all STL functionality.
708 @externallyDefinedApi
715 /** @fn std::sort(_RandomAccessIter __first, _RandomAccessIter __last)
716 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
718 The Symbian implementation of this API fully supports all STL functionality.
721 @externallyDefinedApi
727 /** @fn std::sort(_RandomAccessIter __first, _RandomAccessIter __last, _Compare __comp)
728 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
730 The Symbian implementation of this API fully supports all STL functionality.
733 @externallyDefinedApi
740 /** @fn std::stable_sort(_RandomAccessIter __first, _RandomAccessIter __last)
741 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
743 The Symbian implementation of this API fully supports all STL functionality.
746 @externallyDefinedApi
752 /** @fn std::stable_sort(_RandomAccessIter __first, _RandomAccessIter __last, _Compare __comp)
753 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
755 The Symbian implementation of this API fully supports all STL functionality.
758 @externallyDefinedApi
765 /** @fn std::partial_sort(_RandomAccessIter __first, _RandomAccessIter __middle, _RandomAccessIter __last)
766 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
768 The Symbian implementation of this API fully supports all STL functionality.
771 @externallyDefinedApi
778 /** @fn std::partial_sort(_RandomAccessIter __first, _RandomAccessIter __middle, _RandomAccessIter __last, _Compare __comp)
779 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
781 The Symbian implementation of this API fully supports all STL functionality.
784 @externallyDefinedApi
792 /** @fn std::partial_sort_copy(_InputIter __first, _InputIter __last, _RandomAccessIter __result_first, _RandomAccessIter __result_last)
793 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
795 The Symbian implementation of this API fully supports all STL functionality.
798 @externallyDefinedApi
801 @param __result_first -
802 @param __result_last -
806 /** @fn std::partial_sort_copy(_InputIter __first, _InputIter __last, _RandomAccessIter __result_first, _RandomAccessIter __result_last, _Compare __comp)
807 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
809 The Symbian implementation of this API fully supports all STL functionality.
812 @externallyDefinedApi
815 @param __result_first -
816 @param __result_last -
821 /** @fn std::nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, _RandomAccessIter __last)
822 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
824 The Symbian implementation of this API fully supports all STL functionality.
827 @externallyDefinedApi
834 /** @fn std::nth_element(_RandomAccessIter __first, _RandomAccessIter __nth, _RandomAccessIter __last, _Compare __comp)
835 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
837 The Symbian implementation of this API fully supports all STL functionality.
840 @externallyDefinedApi
848 /** @fn std::merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result)
849 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
851 The Symbian implementation of this API fully supports all STL functionality.
854 @externallyDefinedApi
863 /** @fn std::merge(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp)
864 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
866 The Symbian implementation of this API fully supports all STL functionality.
869 @externallyDefinedApi
879 /** @fn std::inplace_merge(_BidirectionalIter __first, _BidirectionalIter __middle, _BidirectionalIter __last)
880 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
882 The Symbian implementation of this API fully supports all STL functionality.
885 @externallyDefinedApi
892 /** @fn std::inplace_merge(_BidirectionalIter __first, _BidirectionalIter __middle, _BidirectionalIter __last, _Compare __comp)
893 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
895 The Symbian implementation of this API fully supports all STL functionality.
898 @externallyDefinedApi
906 /** @fn std::includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _Compare __comp)
907 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
909 The Symbian implementation of this API fully supports all STL functionality.
912 @externallyDefinedApi
921 /** @fn std::includes(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2)
922 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
924 The Symbian implementation of this API fully supports all STL functionality.
927 @externallyDefinedApi
935 /** @fn std::set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result)
936 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
938 The Symbian implementation of this API fully supports all STL functionality.
941 @externallyDefinedApi
950 /** @fn std::set_union(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp)
951 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
953 The Symbian implementation of this API fully supports all STL functionality.
956 @externallyDefinedApi
966 /** @fn std::set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result)
967 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
969 The Symbian implementation of this API fully supports all STL functionality.
972 @externallyDefinedApi
981 /** @fn std::set_intersection(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp)
982 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
984 The Symbian implementation of this API fully supports all STL functionality.
987 @externallyDefinedApi
997 /** @fn std::set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result)
998 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1000 The Symbian implementation of this API fully supports all STL functionality.
1003 @externallyDefinedApi
1012 /** @fn std::set_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp)
1013 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1015 The Symbian implementation of this API fully supports all STL functionality.
1018 @externallyDefinedApi
1028 /** @fn std::set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result)
1029 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1031 The Symbian implementation of this API fully supports all STL functionality.
1034 @externallyDefinedApi
1043 /** @fn std::set_symmetric_difference(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2, _OutputIter __result, _Compare __comp)
1044 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1046 The Symbian implementation of this API fully supports all STL functionality.
1049 @externallyDefinedApi
1059 /** @fn std::max_element(_ForwardIter __first, _ForwardIter __last)
1060 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1062 The Symbian implementation of this API fully supports all STL functionality.
1065 @externallyDefinedApi
1071 /** @fn std::max_element(_ForwardIter __first, _ForwardIter __last, _Compare __comp)
1072 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1074 The Symbian implementation of this API fully supports all STL functionality.
1077 @externallyDefinedApi
1084 /** @fn std::min_element(_ForwardIter __first, _ForwardIter __last)
1085 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1087 The Symbian implementation of this API fully supports all STL functionality.
1090 @externallyDefinedApi
1096 /** @fn std::min_element(_ForwardIter __first, _ForwardIter __last, _Compare __comp)
1097 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1099 The Symbian implementation of this API fully supports all STL functionality.
1102 @externallyDefinedApi
1109 /** @fn std::next_permutation(_BidirectionalIter __first, _BidirectionalIter __last)
1110 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1112 The Symbian implementation of this API fully supports all STL functionality.
1115 @externallyDefinedApi
1121 /** @fn std::next_permutation(_BidirectionalIter __first, _BidirectionalIter __last, _Compare __comp)
1122 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1124 The Symbian implementation of this API fully supports all STL functionality.
1127 @externallyDefinedApi
1134 /** @fn std::prev_permutation(_BidirectionalIter __first, _BidirectionalIter __last)
1135 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1137 The Symbian implementation of this API fully supports all STL functionality.
1140 @externallyDefinedApi
1146 /** @fn std::prev_permutation(_BidirectionalIter __first, _BidirectionalIter __last, _Compare __comp)
1147 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1149 The Symbian implementation of this API fully supports all STL functionality.
1152 @externallyDefinedApi
1159 /** @fn std::is_heap(_RandomAccessIter __first, _RandomAccessIter __last)
1160 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1162 The Symbian implementation of this API fully supports all STL functionality.
1165 @externallyDefinedApi
1171 /** @fn std::is_heap(_RandomAccessIter __first, _RandomAccessIter __last, _StrictWeakOrdering __comp)
1172 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1174 The Symbian implementation of this API fully supports all STL functionality.
1177 @externallyDefinedApi
1186 For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
1188 The Symbian implementation of this API fully supports all STL functionality.
1191 @externallyDefinedApi