3
0
Fork 0
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:
Emily Schmidt 2024-08-27 11:11:02 +01:00
parent 761eff594f
commit 459e6b913a
2 changed files with 42 additions and 1 deletions

View file

@ -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()); }