Changeset 4352 for trunk/psLib/src/collections/psHash.h
- Timestamp:
- Jun 22, 2005, 1:48:39 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psHash.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psHash.h
r4343 r4352 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-06-22 03:00:27$13 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-22 23:48:39 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 52 52 /// Insert entry into table. 53 53 bool psHashAdd( 54 psHash* table,///< The table to insert in.54 psHash* hash, ///< The table to insert in. 55 55 const char *key, ///< The key to use. 56 56 psPtr data ///< The data to insert. … … 59 59 /// Lookup key in table. 60 60 psPtr psHashLookup( 61 const psHash* table,///< The table to lookup key in.61 const psHash* hash, ///< The table to lookup key in. 62 62 const char *key ///< The key to lookup. 63 63 ); … … 65 65 /// Remove key from table. 66 66 bool psHashRemove( 67 psHash* table,///< The table to lookup key in.67 psHash* hash, ///< The table to lookup key in. 68 68 const char *key ///< The key to lookup. 69 69 ); … … 79 79 */ 80 80 psArray* psHashToArray( 81 const psHash* table///< The table to convert to psArray.81 const psHash* hash ///< The table to convert to psArray. 82 82 ); 83 83
Note:
See TracChangeset
for help on using the changeset viewer.
