1#ifndef GIM_BITSET_H_INCLUDED 
    2#define GIM_BITSET_H_INCLUDED 
   37#define GUINT_BIT_COUNT 32 
   38#define GUINT_EXPONENT 5 
const T & btMax(const T &a, const T &b)
 
Very simple array container with fast access and simd memory.
 
void resize(GUINT size, bool call_constructor=true, const T &fillData=T())
 
bool resize(GUINT newsize)
 
void clear(GUINT bit_index)
 
char get(GUINT bit_index)
Return 0 or 1.
 
void set(GUINT bit_index)
 
gim_array< GUINT > m_container
 
gim_bitset(GUINT bits_count)