MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / is_set

Method is_set

sql/sql_bitmap.h:71–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69 void subtract(const Bitmap& map2) { bitmap_subtract(&map, &map2.map); }
70 void merge(const Bitmap& map2) { bitmap_union(&map, &map2.map); }
71 my_bool is_set(uint n) const { return bitmap_is_set(&map, n); }
72 my_bool is_prefix(uint n) const { return bitmap_is_prefix(&map, n); }
73 my_bool is_clear_all() const { return bitmap_is_clear_all(&map); }
74 my_bool is_set_all() const { return bitmap_is_set_all(&map); }

Callers 7

full_nameMethod · 0.45
send_kill_messageMethod · 0.45
print_item_w_nameMethod · 0.45
print_for_orderMethod · 0.45
renameMethod · 0.45
full_nameMethod · 0.45
printMethod · 0.45

Calls 1

bitmap_is_setFunction · 0.85

Tested by

no test coverage detected