Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions library/linkedList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ library DoublyLinkedList {
}
// Iterator interface
function iterate_start(data storage self) returns (uint80) { return self.first; }
function iterate_end(data storage self) returns (uint80) { return self.last; }
function size(data storage self) returns (uint80) { return self.count; }
function iterate_valid(data storage self, uint80 _index) returns (bool) { return _index - 1 < self.items.length; }
function iterate_prev(data storage self, uint80 _index) returns (uint80) { return self.items[_index - 1].prev; }
function iterate_next(data storage self, uint80 _index) returns (uint80) { return self.items[_index - 1].next; }
Expand Down