Changeset 3165 for trunk/psLib/src/collections/psArray.h
- Timestamp:
- Feb 8, 2005, 3:04:01 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psArray.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psArray.h
r3115 r3165 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.2 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-02-0 3 00:54:10$14 * @version $Revision: 1.21 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-02-09 01:04:01 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 126 126 ); 127 127 128 /** Set an element in the array. If the current element is non-NULL, the old 129 * element is freed. 130 * 131 * @return psBool TRUE if the element was set successfully, otherwise FALSE 132 */ 133 psBool psArraySet( 134 psArray* in, ///< input array to set element in 135 psU32 position, ///< the element position to set 136 void* value ///< the value to set it to 137 ); 138 139 /** Get an element from the array. 140 * 141 * @return void* the element at given position. 142 */ 143 void* psArrayGet( 144 psArray* in, ///< input array to get element from 145 psU32 position ///< the element position to get 146 ); 147 128 148 /// @} 129 149
Note:
See TracChangeset
for help on using the changeset viewer.
