File: control

package info (click to toggle)
golang-github-tidwall-btree 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: golang-github-tidwall-btree
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Andreas Henriksson <andreas@fatal.se>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any
Standards-Version: 4.2.1
Homepage: https://github.com/tidwall/btree
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-tidwall-btree
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-tidwall-btree.git
XS-Go-Import-Path: github.com/tidwall/btree
Testsuite: autopkgtest-pkg-go

Package: golang-github-tidwall-btree-dev
Architecture: all
Depends: ${misc:Depends}
Breaks: golang-github-tidwall-buntdb-dev (<< 1.1.5)
Multi-Arch: foreign
Description: B-Tree implementation for Go
 This package provides an in-memory B-Tree implementation for Go, useful
 as an ordered, mutable data structure.
 .
 This is a fork of the wonderful google/btree package. It's has all the same
 great features and adds a few more.
 .
  * Descend* functions for iterating backwards.
  * Iteration performance boost.
  * User defined context.
 .
 User defined context is a great new feature that allows for entering
 the same item into multiple B-trees, and each B-tree have a different
 ordering formula.