IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 4:30:50 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psHash.h

    r4162 r4315  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-06-08 23:40:45 $
     13 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-06-18 02:30:49 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4747/// Allocate hash buckets in table.
    4848psHash* psHashAlloc(
    49     psS32 nbucket                  ///< The number of buckets to allocate.
     49    long nalloc                        ///< The number of buckets to allocate.
    5050);
    5151
    5252/// Insert entry into table.
    5353psBool psHashAdd(
    54     psHash* table,                 ///< The table to insert in.
    55     const char *key,               ///< The key to use.
    56     psPtr data                     ///< The data to insert.
     54    psHash* table,                     ///< The table to insert in.
     55    const char *key,                   ///< The key to use.
     56    psPtr data                         ///< The data to insert.
    5757);
    5858
    5959/// Lookup key in table.
    6060psPtr psHashLookup(
    61     psHash* table,                 ///< The table to lookup key in.
    62     const char *key                ///< The key to lookup.
     61    psHash* table,                     ///< The table to lookup key in.
     62    const char *key                    ///< The key to lookup.
    6363);
    6464
    6565/// Remove key from table.
    66 psBool psHashRemove(
    67     psHash* table,                 ///< The table to lookup key in.
    68     const char *key                ///< The key to lookup.
     66bool psHashRemove(
     67    psHash* table,                     ///< The table to lookup key in.
     68    const char *key                    ///< The key to lookup.
    6969);
    7070
    7171/// List all keys in table.
    7272psList* psHashKeyList(
    73     psHash* table                  ///< The table to list keys from..
     73    const psHash* hash                 ///< The table to list keys from..
    7474);
    7575
     
    7979 */
    8080psArray* psHashToArray(
    81     psHash* table                  ///< The table to convert to psArray.
     81    psHash* table                 ///< The table to convert to psArray.
    8282);
    8383
Note: See TracChangeset for help on using the changeset viewer.