A collection of simple linear data structres, that are not in the standard Go lib.
Stack description
Basic stack (FILO) using the builtin linked list, can store any type, concurrency safe, no size limit, implements Stringer.
Queue description
Basic queue (FIFO) using the builtin linked list, can store any type, concurrency safe (optional mutex), no size limit, implements Stringer.