This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------------------------------------------------------------------------------------------------------------- | |
-- linkedlist.lua - v1.0.2 (2013-08) | |
-- Michael Ebens - https://gist.github.com/BlackBulletIV | |
-- Double Linked List / Deque (Deck) Container | |
-- https://gist.github.com/BlackBulletIV/4084042 | |
----------------------------------------------------------------------------------------------------------------------- | |
--[[ | |
This returns an Container Creator for a Double Linked List | |
with Deque (Deck) method names. See example below. |