Example #1
0
// returns TRUE if bs contains member, FALSE otherwise
static SB_INLINE bool bitset_member(BitSet& bs, uint32_t member) {
    return (bs.find(member) == bs.end());
}