/[svn]/doc/docbase/instrument_scripts/nksp/reference/functions/nksp_sort_function.html
ViewVC logotype

Diff of /doc/docbase/instrument_scripts/nksp/reference/functions/nksp_sort_function.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3232 by schoenebeck, Fri May 26 19:14:44 2017 UTC revision 3233 by schoenebeck, Sun May 28 16:09:56 2017 UTC
# Line 7  Line 7 
7    <body>    <body>
8      <h1>sort()</h1>      <h1>sort()</h1>
9      <p>      <p>
10        Sorts the values in the given array.        Sorts the values in the given array. Since this function modifies the
11          passed array, you must not pass a <code>const</code> or read-only
12          array variable.
13      </p>      </p>
14    
15      <h3>Function Prototype</h3>      <h3>Function Prototype</h3>
# Line 31  sort(??array??, [??descending??]) Line 33  sort(??array??, [??descending??])
33          <td><code>??descending??</code></td>          <td><code>??descending??</code></td>
34          <td>Integer Number</td>          <td>Integer Number</td>
35          <td>Defines in which order the array shall be sorted.<br>          <td>Defines in which order the array shall be sorted.<br>
36              <b>0</b>: The values are sorted in ascending order.<br>              <code>0</code>: The values are sorted in ascending order.<br>
37              <b>1</b>: The values are sorted in descending order.<br>              <code>1</code>: The values are sorted in descending order.<br>
38              [optional, default: <b>0</b>]</td>              [optional, default: <code>0</code>]</td>
39        </tr>        </tr>
40      </table>      </table>
41    

Legend:
Removed from v.3232  
changed lines
  Added in v.3233

  ViewVC Help
Powered by ViewVC