Versions in this module Expand all Collapse all v1 v1.9.8 Jun 28, 2023 Changes in this version + type BlockingDeque interface + Close func() + func NewUnboundedBlockingDeque(initSize int) BlockingDeque[T] + type Deque interface + Index func(int) (T, bool) + Len func() int + List func() []T + PeekLeft func() (T, bool) + PeekRight func() (T, bool) + PopLeft func() (T, bool) + PopRight func() (T, bool) + PushLeft func(T) bool + PushRight func(T) bool + func NewUnboundedDeque(initSize int) Deque[T] v1.9.8-rc.9 Jun 28, 2023