|
| "int" | for_all_chains (self, "chain_visitor_t" cv, "int" gca_flags) |
| | for_all_chains(self, cv, gca_flags) -> int Visit all chains
|
| |
| "bool" | is_locked (self) |
| | is_locked(self) -> bool Are the chains locked? It is a good idea to lock the chains before using them.
|
| |
| "void" | acquire (self) |
| | acquire(self) Lock the chains.
|
| |
| "void" | release (self) |
| | release(self) Unlock the chains.
|
| |
| "void" | swap (self, "graph_chains_t" r) |
| | swap(self, r)
|
| |
| | __init__ (self) |
| | init(self) -> graph_chains_t
|
| |
| "block_chains_t &" | push_back (self, *args) |
| | push_back(self, x)
|
| |
| "void" | pop_back (self) |
| | pop_back(self)
|
| |
| "size_t" | size (self) |
| | size(self) -> size_t
|
| |
| "bool" | empty (self) |
| | empty(self) -> bool
|
| |
| "block_chains_t const &" | at (self, "size_t" _idx) |
| | at(self, _idx) -> block_chains_t
|
| |
| "void" | qclear (self) |
| | qclear(self)
|
| |
| "void" | clear (self) |
| | clear(self)
|
| |
| "void" | resize (self, *args) |
| | resize(self, _newsize, x)
|
| |
| "void" | grow (self, *args) |
| | grow(self, x=block_chains_t())
|
| |
| "size_t" | capacity (self) |
| | capacity(self) -> size_t
|
| |
| "void" | reserve (self, "size_t" cnt) |
| | reserve(self, cnt)
|
| |
| "void" | truncate (self) |
| | truncate(self)
|
| |
| "block_chains_t *" | extract (self) |
| | extract(self) -> block_chains_t
|
| |
| "void" | inject (self, "block_chains_t" s, "size_t" len) |
| | inject(self, s, len)
|
| |
| "qvector< block_chains_t >::const_iterator" | begin (self, *args) |
| | begin(self) -> block_chains_t
|
| |
| "qvector< block_chains_t >::const_iterator" | end (self, *args) |
| | end(self) -> block_chains_t
|
| |
| "qvector< block_chains_t >::iterator" | insert (self, "block_chains_t" it, "block_chains_t" x) |
| | insert(self, it, x) -> block_chains_t
|
| |
| "qvector< block_chains_t >::iterator" | erase (self, *args) |
| | erase(self, it) -> block_chains_t
|
| |
| "size_t" | __len__ (self) |
| | len(self) -> size_t
|
| |
| "block_chains_t const &" | __getitem__ (self, "size_t" i) |
| | getitem(self, i) -> block_chains_t
|
| |
| "void" | __setitem__ (self, "size_t" i, "block_chains_t" v) |
| | setitem(self, i, v)
|
| |