Versions in this module Expand all Collapse all v0 v0.1.2 Feb 22, 2020 v0.1.1 Feb 22, 2020 Changes in this version + const Version + type Deque struct + func New() *Deque + func NewBounded(maxSize int) (*Deque, error) + func (dq *Deque) Append(item interface{}) + func (dq *Deque) AppendLeft(item interface{}) + func (dq *Deque) Get(i int) (interface{}, error) + func (dq *Deque) Len() int + func (dq *Deque) Pop() (interface{}, error) + func (dq *Deque) PopLeft() (interface{}, error) + func (dq *Deque) Rotate(n int) + func (dq *Deque) Set(i int, val interface{}) error + func (dq *Deque) String() string