Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 874 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 874 Bytes

LinkBase

GitHub version

In memory database for storing collections of integers. Collections are stored using linked lists.

Usage

The following operations can be performed on a collection.

view                	prints the contents of the list
count               	counts the contents of the list
append [value]      	appends a value to the list
prepend [value]     	prepends a value to the list
insert [index] [value]	inserts a value into the list at a specified index
del_first           	deletes the first value of the list
del_last            	deletes the last value of the list
del_idx [index]     	deletes a value at a specified index
exit                	Ends the current session
quit                	Ends the current session

License