IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2005, 10:22:22 AM (21 years ago)
Author:
evanalst
Message:

Update changes to psList.

File:
1 edited

Legend:

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

    r2681 r3107  
    1010 *  @ingroup LinkedList
    1111 *
    12  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-12-10 02:50:14 $
     12 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-02-02 20:21:48 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7878int index;                         ///< the index number in the list
    7979bool offEnd;                       ///< Iterator off the end?
     80bool mutable;                      ///< Is it permissible to modify the list?
    8081}
    8182psListIterator;
     
    9899psListIterator* psListIteratorAlloc(
    99100    psList* list,                      ///< the psList to iterate with
    100     int location                       ///< the initial starting point.
     101    int location,                      ///< the initial starting point.
    101102    ///<  This can be a numeric index, PS_LIST_HEAD, or PS_LIST_TAIL.
     103    bool mutable                       ///< Is it permissible to modify list?
    102104);
    103105
     
    175177 *                      iterator goes past the end of the list.
    176178 */
    177 psPtr psListGetNext(
     179psPtr psListGetAndIncrement(
    178180    psListIterator* restrict iterator  ///< iterator to move
    179181);
     
    184186 *                      iterator goes past the beginning of the list.
    185187 */
    186 psPtr psListGetPrevious(
     188psPtr psListGetAndDecrement(
    187189    psListIterator* restrict iterator  ///< iterator to move
    188190);
Note: See TracChangeset for help on using the changeset viewer.