Skip to content

Files

Latest commit

 

History

History
8 lines (6 loc) · 693 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 693 Bytes

linear GoDoc

A collection of simple linear data structres, that are not in the standard Go lib.

Basic stack (FILO) using the builtin linked list, can store any type, concurrency safe, no size limit, implements Stringer.

Basic queue (FIFO) using the builtin linked list, can store any type, concurrency safe (optional mutex), no size limit, implements Stringer.