Skip to content

Instantly share code, notes, and snippets.

@jpoag
jpoag / deque.lua
Last active December 21, 2015 12:58 — forked from mebens/example.lua
-----------------------------------------------------------------------------------------------------------------------
-- 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.