Source: golang-github-elliotchance-orderedmap Section: golang Maintainer: Debian Go Packaging Team Uploaders: Christoph Martin , Build-Depends: debhelper-compat (= 13), dh-sequence-golang, dpkg-build-api (= 1), golang-any, golang-github-stretchr-testify-dev, Testsuite: autopkgtest-pkg-go Priority: optional Standards-Version: 4.7.0 Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-elliotchance-orderedmap Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-elliotchance-orderedmap.git Homepage: https://github.com/elliotchance/orderedmap XS-Go-Import-Path: github.com/elliotchance/orderedmap Package: golang-github-elliotchance-orderedmap-dev Architecture: all Multi-Arch: foreign Depends: golang-github-stretchr-testify-dev, ${misc:Depends}, Description: Ordered map in Go with amortized O(1) for Set, Get, Delete and Len (library) An *OrderedMap is a high performance ordered map that maintains amortized O(1) for Set, Get, Delete and Len: . Internally an *OrderedMap uses the composite type map (https://go.dev/blog/maps) combined with a trimmed down linked list to maintain the order.