Get if the specified bits are set.
static bool areBitsSet(int value, int bitMask) { return (value & bitMask) != 0; }