# go-deque **Repository Path**: mirrors_dnaeon/go-deque ## Basic Information - **Project Name**: go-deque - **Description**: A simple, generic and thread-safe deque implementation - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: v1 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-24 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-deque [![Build Status](https://github.com/dnaeon/go-deque/actions/workflows/test.yaml/badge.svg)](https://github.com/dnaeon/go-deque/actions/workflows/test.yaml/badge.svg) [![Go Reference](https://pkg.go.dev/badge/gopkg.in/dnaeon/go-deque.v1.svg)](https://pkg.go.dev/gopkg.in/dnaeon/go-deque.v1) [![Go Report Card](https://goreportcard.com/badge/gopkg.in/dnaeon/go-deque.v1)](https://goreportcard.com/report/gopkg.in/dnaeon/go-deque.v1) [![codecov](https://codecov.io/gh/dnaeon/go-deque/branch/v1/graph/badge.svg)](https://codecov.io/gh/dnaeon/go-deque) A simple, generic, thread-safe implementation of [double-ended queue](https://en.wikipedia.org/wiki/Double-ended_queue) in Go. ## Installation Install `go-deque` by executing the following command. ``` shell go get -v gopkg.in/dnaeon/go-deque.v1 ``` ## Usage See the included [test cases](./deque_test.go) for some examples. ## Tests Run the tests. ``` shell make test ``` ## License `go-deque` is Open Source and licensed under the [BSD License](http://opensource.org/licenses/BSD-2-Clause).