- 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/psArray.h
r3933 r3966 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.22.8. 1$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-05-1 3 22:30:02$14 * @version $Revision: 1.22.8.2 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-05-19 01:09:56 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 80 80 int delta, 81 81 ///< the amount to expand array, if necessary. If less than one, 10 will be used. 82 psPtr data///< the data pointer to add to psArray82 const psPtr data ///< the data pointer to add to psArray 83 83 ); 84 84 … … 93 93 psBool psArrayRemove( 94 94 psArray* psArr, ///< array to operate on 95 psPtr data///< the data pointer to remove from psArray95 const psPtr data ///< the data pointer to remove from psArray 96 96 ); 97 97 … … 134 134 psArray* in, ///< input array to set element in 135 135 psU32 position, ///< the element position to set 136 void* value///< the value to set it to136 const void* value ///< the value to set it to 137 137 ); 138 138 … … 142 142 */ 143 143 void* psArrayGet( 144 psArray* in,///< input array to get element from144 const psArray* in, ///< input array to get element from 145 145 psU32 position ///< the element position to get 146 146 );
Note:
See TracChangeset
for help on using the changeset viewer.
