os/ossrv/genericopenlibs/cppstdlib/stl/stlport/stl/_numeric.dosc
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
sl@0
     3
/** @file _numeric.h
sl@0
     4
@internalComponent
sl@0
     5
*/
sl@0
     6
sl@0
     7
/** @fn std::accumulate(_InputIterator __first, _InputIterator __last, _Tp _Init)
sl@0
     8
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
     9
sl@0
    10
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    11
sl@0
    12
@publishedAll
sl@0
    13
@externallyDefinedApi
sl@0
    14
@param __first -
sl@0
    15
@param __last -
sl@0
    16
@param _Init -
sl@0
    17
@return -
sl@0
    18
*/
sl@0
    19
sl@0
    20
/** @fn std::accumulate(_InputIterator __first, _InputIterator __last, _Tp _Init, _BinaryOperation __binary_op)
sl@0
    21
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    22
sl@0
    23
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    24
sl@0
    25
@publishedAll
sl@0
    26
@externallyDefinedApi
sl@0
    27
@param __first -
sl@0
    28
@param __last -
sl@0
    29
@param _Init -
sl@0
    30
@param __binary_op -
sl@0
    31
@return -
sl@0
    32
*/
sl@0
    33
sl@0
    34
/** @fn std::inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp _Init)
sl@0
    35
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    36
sl@0
    37
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    38
sl@0
    39
@publishedAll
sl@0
    40
@externallyDefinedApi
sl@0
    41
@param __first1 -
sl@0
    42
@param __last1 -
sl@0
    43
@param __first2 -
sl@0
    44
@param _Init -
sl@0
    45
@return -
sl@0
    46
*/
sl@0
    47
sl@0
    48
/** @fn std::inner_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp _Init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2)
sl@0
    49
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    50
sl@0
    51
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    52
sl@0
    53
@publishedAll
sl@0
    54
@externallyDefinedApi
sl@0
    55
@param __first1 -
sl@0
    56
@param __last1 -
sl@0
    57
@param __first2 -
sl@0
    58
@param _Init -
sl@0
    59
@param __binary_op1 -
sl@0
    60
@param __binary_op2 -
sl@0
    61
@return -
sl@0
    62
*/
sl@0
    63
sl@0
    64
/** @fn std::partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
sl@0
    65
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    66
sl@0
    67
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    68
sl@0
    69
@publishedAll
sl@0
    70
@externallyDefinedApi
sl@0
    71
@param __first -
sl@0
    72
@param __last -
sl@0
    73
@param __result -
sl@0
    74
@return -
sl@0
    75
*/
sl@0
    76
sl@0
    77
/** @fn std::partial_sum(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryOperation __binary_op)
sl@0
    78
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    79
sl@0
    80
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    81
sl@0
    82
@publishedAll
sl@0
    83
@externallyDefinedApi
sl@0
    84
@param __first -
sl@0
    85
@param __last -
sl@0
    86
@param __result -
sl@0
    87
@param __binary_op -
sl@0
    88
@return -
sl@0
    89
*/
sl@0
    90
sl@0
    91
/** @fn std::adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result)
sl@0
    92
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
    93
sl@0
    94
The Symbian implementation of this API fully supports all STL functionality.
sl@0
    95
sl@0
    96
@publishedAll
sl@0
    97
@externallyDefinedApi
sl@0
    98
@param __first -
sl@0
    99
@param __last -
sl@0
   100
@param __result -
sl@0
   101
@return -
sl@0
   102
*/
sl@0
   103
sl@0
   104
/** @fn std::adjacent_difference(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryOperation __binary_op)
sl@0
   105
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
   106
sl@0
   107
The Symbian implementation of this API fully supports all STL functionality.
sl@0
   108
sl@0
   109
@publishedAll
sl@0
   110
@externallyDefinedApi
sl@0
   111
@param __first -
sl@0
   112
@param __last -
sl@0
   113
@param __result -
sl@0
   114
@param __binary_op -
sl@0
   115
@return -
sl@0
   116
*/
sl@0
   117
sl@0
   118
/** @fn std::power(_Tp __x, _Integer __n, _MonoidOperation __opr)
sl@0
   119
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
   120
sl@0
   121
The Symbian implementation of this API fully supports all STL functionality.
sl@0
   122
sl@0
   123
@publishedAll
sl@0
   124
@externallyDefinedApi
sl@0
   125
@param __x -
sl@0
   126
@param __n -
sl@0
   127
@param __opr -
sl@0
   128
@return -
sl@0
   129
*/
sl@0
   130
sl@0
   131
/** @fn std::power(_Tp __x, _Integer __n)
sl@0
   132
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
   133
sl@0
   134
The Symbian implementation of this API fully supports all STL functionality.
sl@0
   135
sl@0
   136
@publishedAll
sl@0
   137
@externallyDefinedApi
sl@0
   138
@param __x -
sl@0
   139
@param __n -
sl@0
   140
@return -
sl@0
   141
*/
sl@0
   142
sl@0
   143
/** @fn std::iota(_ForwardIterator __first, _ForwardIterator __last, _Tp __val)
sl@0
   144
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
sl@0
   145
sl@0
   146
The Symbian implementation of this API fully supports all STL functionality.
sl@0
   147
sl@0
   148
@publishedAll
sl@0
   149
@externallyDefinedApi
sl@0
   150
@param __first -
sl@0
   151
@param __last -
sl@0
   152
@param __val -
sl@0
   153
@return -
sl@0
   154
*/