mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
add functional ir documentation
This commit is contained in:
parent
761eff594f
commit
459e6b913a
2 changed files with 42 additions and 1 deletions
|
@ -287,7 +287,6 @@ namespace Functional {
|
|||
bool operator!=(iterator const &other) const { return _ir != other._ir || _index != other._index; }
|
||||
bool operator==(iterator const &other) const { return !(*this != other); }
|
||||
pointer operator->();
|
||||
// TODO: implement operator-> using the arrow_proxy class currently in mem.h
|
||||
};
|
||||
iterator begin() { return iterator(this, 0); }
|
||||
iterator end() { return iterator(this, _graph.size()); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue