They are additionally documented in the online documentation, a copy of which is also shipped with the library source code (in .../docs/html/documentation.html). You can also read the documentation on SGI's site, which is still running even though the code is not maintained.
NB that the following notes are pulled from various comments all over the place, so they may seem stilted.
|
Find the median of three values using a predicate for comparison.
{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 120 of file stl_algo.h. |
|
Find the median of three values.
{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 86 of file stl_algo.h. |