Versions in this module Expand all Collapse all v0 v0.0.1 Oct 25, 2020 Changes in this version + type Queue struct + func New(initialSize int64) *Queue + func (q *Queue) Empty() bool + func (q *Queue) Length() int64 + func (q *Queue) Pop() (interface{}, bool) + func (q *Queue) PopMany(count int64) ([]interface{}, bool) + func (q *Queue) Push(item interface{})