LinkedList
contract LinkedList
Reference
Events
AddEntry
event AddEntry(bytes32 head, uint number, string name, bytes32 next)
- Parameters:
head
- bytes32number
- uintname
- stringnext
- bytes32
RemoveEntry
event RemoveEntry(bytes32 head, uint number, string name, bytes32 next)
- Parameters:
head
- bytes32number
- uintname
- stringnext
- bytes32
Functions
LinkedList
function LinkedList() public
addEntry
function addEntry(uint _number, string _name) public returns (bool)
- Parameters:
_number
- uint_name
- string- Returns:
- bool
getEntry
function getEntry(bytes32 _id) public view returns (bytes32, uint, string)
- Parameters:
_id
- bytes32- Returns:
- bytes32
- uint
- string
removeEntry
function removeEntry(bytes32 _id) public returns (bool)
- Parameters:
_id
- bytes32- Returns:
- bool