Changeset 153 for trunk/archive/pslib/include/psSort.h
- Timestamp:
- Mar 9, 2004, 12:28:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psSort.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psSort.h
r149 r153 6 6 /* Sorting */ 7 7 8 /* Sort an array */ 9 /* Inputs not restrict-ed to allow sort in place */ 8 /** Sort an array. Inputs not restrict-ed to allow sort in place */ 10 9 psFloatArray * 11 psSort(psFloatArray *out, // Sorted array to return. May be NULL12 const psFloatArray *myArray // Array to sort10 psSort(psFloatArray *out, //!< Sorted array to return. May be NULL 11 const psFloatArray *myArray //!< Array to sort 13 12 ); 14 13 15 /* Sort an array, along with some other stuff */ 16 /* Returns an index array */ 14 /** Sort an array, along with some other stuff. Returns an index array */ 17 15 psIntArray * 18 psCoSort(psIntArray *restrict out; // Output index array (may be NULL)19 const psFloatArray *restrict myArray // Array to sort16 psCoSort(psIntArray *restrict out; //!< Output index array (may be NULL) 17 const psFloatArray *restrict myArray //!< Array to sort 20 18 ); 21 19
Note:
See TracChangeset
for help on using the changeset viewer.
