Changeset 1228 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Jul 15, 2004, 12:18:02 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r1193 r1228 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07- 08 01:05:00$12 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-15 22:18:02 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 21 21 #include "psCompare.h" 22 #include "ps Vector.h"22 #include "psArray.h" 23 23 24 24 /** @addtogroup LinkedList … … 156 156 /** Convert a linked list to an array 157 157 * 158 * @return ps Vector* A new psVectorpopulated with elements from the list,158 * @return psArray* A new psArray populated with elements from the list, 159 159 * or NULL if the given dlist parameter is NULL. 160 160 */ 161 ps Vector* psListToVector(161 psArray* psListToArray( 162 162 psList *dlist ///< List to convert 163 163 ); … … 165 165 /** Convert array to a doubly-linked list 166 166 * 167 * @return psList* A new psList populated with elements formt the ps Vector,167 * @return psList* A new psList populated with elements formt the psArray, 168 168 * or NULL is the given arr parameter is NULL. 169 169 */ 170 psList* ps VectorToList(171 ps Vector* arr ///< vector to convert170 psList* psArrayToList( 171 psArray* arr ///< vector to convert 172 172 ); 173 173
Note:
See TracChangeset
for help on using the changeset viewer.
