|
| | __init__ (self, *args) |
| | init(self) -> rlist_t init(self, m) -> rlist_t
|
| |
| "char const *" | dstr (self) |
| | dstr(self) -> char const *
|
| |
| "void" | swap (self, "bitset_t" r) |
| | swap(self, r)
|
| |
| "bitset_t &" | copy (self, "bitset_t" m) |
| | copy(self, m) -> bitset_t
|
| |
| "bool" | add (self, *args) |
| | add(self, bit) -> bool
|
| |
| "bool" | sub (self, *args) |
| | sub(self, bit) -> bool
|
| |
| "bool" | cut_at (self, "int" maxbit) |
| | cut_at(self, maxbit) -> bool
|
| |
| "void" | shift_down (self, "int" shift) |
| | shift_down(self, shift)
|
| |
| "bool" | has (self, "int" bit) |
| | has(self, bit) -> bool
|
| |
| "bool" | has_all (self, "int" bit, "int" width) |
| | has_all(self, bit, width) -> bool
|
| |
| "bool" | has_any (self, "int" bit, "int" width) |
| | has_any(self, bit, width) -> bool
|
| |
| "bool" | empty (self) |
| | empty(self) -> bool
|
| |
| "int" | count (self, *args) |
| | count(self) -> int count(self, bit) -> int
|
| |
| "int" | last (self) |
| | last(self) -> int
|
| |
| "void" | clear (self) |
| | clear(self)
|
| |
| "void" | fill_with_ones (self, "int" maxbit) |
| | fill_with_ones(self, maxbit)
|
| |
| "bool" | has_common (self, "bitset_t" ml) |
| | has_common(self, ml) -> bool
|
| |
| "bool" | intersect (self, "bitset_t" ml) |
| | intersect(self, ml) -> bool
|
| |
| "bool" | is_subset_of (self, "bitset_t" ml) |
| | is_subset_of(self, ml) -> bool
|
| |
| "bool" | includes (self, "bitset_t" ml) |
| | includes(self, ml) -> bool
|
| |
| "bool" | __eq__ (self, "bitset_t" r) |
| | eq(self, r) -> bool
|
| |
| "bool" | __ne__ (self, "bitset_t" r) |
| | ne(self, r) -> bool
|
| |
| "bool" | __lt__ (self, "bitset_t" r) |
| | lt(self, r) -> bool
|
| |
| "bool" | __gt__ (self, "bitset_t" r) |
| | gt(self, r) -> bool
|
| |
| "bool" | __le__ (self, "bitset_t" r) |
| | le(self, r) -> bool
|
| |
| "bool" | __ge__ (self, "bitset_t" r) |
| | ge(self, r) -> bool
|
| |
| "int" | compare (self, "bitset_t" r) |
| | compare(self, r) -> int
|
| |
| "bitset_t::iterator" | itat (self, "int" n) |
| | itat(self, n) -> iterator
|
| |
| "bitset_t::iterator" | begin (self) |
| | begin(self) -> iterator
|
| |
| "bitset_t::iterator" | end (self) |
| | end(self) -> iterator
|
| |
| "int" | front (self) |
| | front(self) -> int
|
| |
| "int" | back (self) |
| | back(self) -> int
|
| |
| "void" | inc (self, "iterator" p, "int" n=1) |
| | inc(self, p, n=1)
|
| |
| "int" | itv (self, "iterator" it) |
| | itv(self, it) -> int
|
| |
| | __iter__ (self) |
| |