github.com/golang-ds/deque

Library of generic deque data structure for Go.


License
MIT
Install
go get github.com/golang-ds/deque

Documentation

deque

Library of generic deque data structure for Go.

Install

$ go get github.com/golang-ds/deque

Deque Usage

Import

import "github.com/golang-ds/deque"

Use

d := deque.New[int]()
d.AddFirst(1)