- Timestamp:
- May 18, 2005, 3:09:57 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_branch_050513/psLib/src/collections/psList.h
r3409 r3966 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 3-11 23:17:46 $12 * @version $Revision: 1.23.8.1 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-05-19 01:09:56 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 88 88 */ 89 89 psList* psListAlloc( 90 psPtr data90 const psPtr data 91 91 ///< initial data item; may be NULL if no an empty psList is desired 92 92 ) … … 121 121 psList* list, ///< list to add item to 122 122 psS32 location, ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location. 123 psPtr data///< data item to add. If NULL, list is not modified.123 const psPtr data ///< data item to add. If NULL, list is not modified. 124 124 ); 125 125 … … 130 130 psBool psListAddAfter( 131 131 psListIterator* list, ///< list position to add item to 132 psPtr data///< data item to add. If NULL, list is not modified.132 const psPtr data ///< data item to add. If NULL, list is not modified. 133 133 ); 134 134 … … 139 139 psBool psListAddBefore( 140 140 psListIterator* list, ///< list position to add item to 141 psPtr data///< data item to add. If NULL, list is not modified.141 const psPtr data ///< data item to add. If NULL, list is not modified. 142 142 ); 143 143 … … 157 157 psBool psListRemoveData( 158 158 psList* list, ///< list to remove element from 159 psPtr data///< data item to find and remove159 const psPtr data ///< data item to find and remove 160 160 ); 161 161 … … 196 196 */ 197 197 psArray* psListToArray( 198 psList* dlist///< List to convert198 const psList* dlist ///< List to convert 199 199 ); 200 200 … … 205 205 */ 206 206 psList* psArrayToList( 207 psArray* arr///< vector to convert207 const psArray* arr ///< vector to convert 208 208 ); 209 209
Note:
See TracChangeset
for help on using the changeset viewer.
