VIPER REFERENCE MANUAL
iflBitArray ( | void* dp); |
iflBitArray& operator[] ( | int idx); |
void operator= ( | int rhs); |
operator int ( | ); |
int from[1024], to[1024]; iflBitArray f = from, t = to;
floatVal = (float)f[i];
t[i] = floatVal; // no cast needed
t[i] = ~(long)t[j]; // bogus result (depends on order of evaluation) t[i] = f[j]; // ok even if 't' and 'f' point to same data array
iflBitArray ( | void* dp); |
operator int ( | ); |
void operator= ( | int rhs); |
iflBitArray& operator[] ( | int idx); |