Changeset 3116 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Feb 2, 2005, 2:56:59 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r3107 r3116 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-02-0 2 20:21:48$12 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-03 00:56:59 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 119 119 */ 120 120 psBool psListAdd( 121 psList* restrict list,///< list to add item to121 psList* list, ///< list to add item to 122 122 psS32 location, ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location. 123 123 psPtr data ///< data item to add. If NULL, list is not modified. … … 147 147 */ 148 148 psBool psListRemove( 149 psList* restrict list,///< list to remove element from149 psList* list, ///< list to remove element from 150 150 psS32 location ///< index of item 151 151 ); … … 156 156 */ 157 157 psBool psListRemoveData( 158 psList* restrict list,///< list to remove element from158 psList* list, ///< list to remove element from 159 159 psPtr data ///< data item to find and remove 160 160 ); … … 168 168 */ 169 169 psPtr psListGet( 170 psList* restrict list,///< list to retrieve element from170 psList* list, ///< list to retrieve element from 171 171 psS32 location ///< index number, PS_LIST_HEAD, or PS_LIST_TAIL 172 172 ); … … 178 178 */ 179 179 psPtr psListGetAndIncrement( 180 psListIterator* restrict iterator///< iterator to move180 psListIterator* iterator ///< iterator to move 181 181 ); 182 182 … … 187 187 */ 188 188 psPtr psListGetAndDecrement( 189 psListIterator* restrict iterator///< iterator to move189 psListIterator* iterator ///< iterator to move 190 190 ); 191 191
Note:
See TracChangeset
for help on using the changeset viewer.
