IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 1, 2004, 11:48:11 AM (22 years ago)
Author:
harman
Message:

Incorporated Ifa's bugs, comments, and additions

File:
1 edited

Legend:

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

    r1166 r1172  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-07-01 00:45:32 $
     14 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-07-01 21:48:11 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    9797);
    9898
     99/** Perform a not operation on a psBitSet
     100 *
     101 *  Toggles bits in a psBitset. All zero bits are set to one and all one bits are set to zero.
     102 *
     103 *  @return  psBitSet*: Pointer to struct containing result of operation.
     104 */
     105psBitSet* psBitSetNot(
     106    psBitSet *outBitSet,                /**< Resulting psBitSet from operation */
     107    const psBitSet *restrict inBitSet   /**< Input psBitSet */
     108);
     109
    99110/** Convert the psBitSet to a string of ones and zeros.
    100111 *
Note: See TracChangeset for help on using the changeset viewer.