Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (solidity-linked-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Solidity Linked List
An utility library for working with sorted linked list data structures in your Solidity project.
Install
npm install solidity-linked-listUsage
pragma solidity ^0.8.0;
import {StructuredLinkedList} from "solidity-linked-list/contracts/StructuredLinkedList.sol";
contract MyContract {
using StructuredLinkedList for StructuredLinkedList.List;
StructuredLinkedList.List list;
// your stuff
}Code
Documentation
Code Analysis
Development
Install dependencies
npm installCompile
npm run compileTest
npm testCode Coverage
npm run coverageLinter
Check Solidity files
npm run lint:solCheck JS/TS files
npm run lint:jsFix JS and Solidity files
npm run lint:fixLicense
Code released under the MIT License.