antlr3bitset (3) Linux Manual Page
include/antlr3bitset.h – Defines the basic structures of an ANTLR3 bitset. Synopsis#include <antlr3defs.h> #include <antlr3collections.h> Data Structuresstruct ANTLR3_BITSET_LIST_struct struct ANTLR3_BITSET_struct Defines#define ANTLR3_BITSET_BITS 64 How many bits in the elements. #define ANTLR3_BITSET_LOG_BITS 6 log2 of ANTLR3_BITSET_BITS 2^ANTLR3_BITSET_LOG_BITS = ANTLR3_BITSET_BITS #define ANTLR3_BITSET_MOD_MASK ANTLR3_BITSET_BITS – 1 We will often need to do a mod operator (i mod nbits). #define…
