solidstate-solidity icon indicating copy to clipboard operation
solidstate-solidity copied to clipboard

Linked List

Open ItsNickBarry opened this issue 3 years ago • 3 comments

SolidState needs libraries for working with singly and doubly linked lists.

ItsNickBarry avatar Jul 03 '21 00:07 ItsNickBarry

Consider using a linked list for the ERC1155Enumerable features.

ItsNickBarry avatar Jul 31 '21 08:07 ItsNickBarry

Differentiate between linked list of unique values and linked list of repeatable values. The former includes constant-time lookups by default, but is not as widely applicable as a standard linked list.

ItsNickBarry avatar Aug 04 '21 21:08 ItsNickBarry

Implementation here: https://github.com/vittominacori/solidity-linked-list If possible, the SolidState implementation should support multiple underlying data types and expose an interface for each, like with EnumerableSet.

ItsNickBarry avatar Dec 30 '21 03:12 ItsNickBarry