Versions in this module Expand all Collapse all v1 v1.0.0 Apr 25, 2022 Changes in this version + func Serialize(queue *Queue[T]) ([]byte, error) + type Queue struct + func Deserialize(data []byte) (*Queue[T], error) + func New() *Queue[T] + func (queue *Queue[T]) Pop() (T, bool) + func (queue *Queue[T]) PopN(n int) []T + func (queue *Queue[T]) Push(values ...T) + func (queue *Queue[T]) Size() int