sbool getBitFromIntArray_littleEndian(int[] array, int iBit) { int iInt = iBit >> 5; ret (array[iInt] & (1 << (iBit & 31))) != 0; }