bitarray.h File Reference
#include "GeomExport.h"
#include "maxheap.h"
#include "WindowsDefines.h"
#include <limits.h>
#include "maxtypes.h"
#include "assert1.h"
|
template<typename T > |
T | operator+ (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
T | operator- (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
T | operator* (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
T | operator/ (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
T | operator% (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator<= (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator< (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator> (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator>= (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator== (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
bool | operator!= (T n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
void | operator+= (T &n, const BitArray::NumberSetProxy &proxy) |
|
template<typename T > |
void | operator-= (T &n, const BitArray::NumberSetProxy &proxy) |
|
Enumerator |
---|
LEFT_BITSHIFT |
|
RIGHT_BITSHIFT |
|
Definition: bitarray.h:45
Definition: bitarray.h:46
574 return n + proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)
579 return n - proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)
584 return proxy.operator *(n);
589 return n / proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)
594 return n % proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)
599 return proxy.operator >=(n);
604 return proxy.operator >(n);
609 return proxy.operator <(n);
614 return proxy.operator <=(n);
619 return proxy.operator ==(n);
624 return proxy.operator !=(n);
629 n += proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)
634 n -= proxy.operator
int();
MAXMEM_EXTERN_C UtilExport int(__cdecl *MAX_heapchk)(void)