Changeset 3107 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Feb 2, 2005, 10:22:22 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r2681 r3107 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $13 * @date $Date: 200 4-12-10 02:50:14$12 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-02 20:21:48 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 78 78 int index; ///< the index number in the list 79 79 bool offEnd; ///< Iterator off the end? 80 bool mutable; ///< Is it permissible to modify the list? 80 81 } 81 82 psListIterator; … … 98 99 psListIterator* psListIteratorAlloc( 99 100 psList* list, ///< the psList to iterate with 100 int location ///< the initial starting point.101 int location, ///< the initial starting point. 101 102 ///< This can be a numeric index, PS_LIST_HEAD, or PS_LIST_TAIL. 103 bool mutable ///< Is it permissible to modify list? 102 104 ); 103 105 … … 175 177 * iterator goes past the end of the list. 176 178 */ 177 psPtr psListGet Next(179 psPtr psListGetAndIncrement( 178 180 psListIterator* restrict iterator ///< iterator to move 179 181 ); … … 184 186 * iterator goes past the beginning of the list. 185 187 */ 186 psPtr psListGet Previous(188 psPtr psListGetAndDecrement( 187 189 psListIterator* restrict iterator ///< iterator to move 188 190 );
Note:
See TracChangeset
for help on using the changeset viewer.
