This group contains auxiliary (probably, unnecessary) functions and classes.
This function returns constant pointer to the first element of valarray. This allows us to use STL algorithms with valarray.
- Parameters
-
rIn | A reference to valarray. |
- Returns
- A constant pointer to the first element of valarray.
This function returns constant pointer to the memory position immediately following the last element of valarray. This allows us to use STL algorithms with valarray.
- Parameters
-
rIn | A reference to valarray. |
- Returns
- A constant pointer to the memory immediately following the last element of valarray.
This function compares the identity of two valarrays.
- Parameters
-
rIn1 | The first valarray. |
rIn2 | The second valarray. |
- Returns
- Returns
true
if rIn1 equals rIn2 and false
otherwise.