Source: golang-github-kelindar-bitmap
Section: golang
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Juan Manuel Méndez Rey <juan.mendezr@proton.me>,
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
               golang-github-kelindar-simd-dev,
               golang-github-klauspost-cpuid-dev,
               golang-github-stretchr-testify-dev,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.4
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-kelindar-bitmap
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-kelindar-bitmap.git
Homepage: https://github.com/kelindar/bitmap
XS-Go-Import-Path: github.com/kelindar/bitmap

Package: golang-github-kelindar-bitmap-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-kelindar-simd-dev,
         golang-github-klauspost-cpuid-dev,
         ${misc:Depends},
Description: Simple dense bitmap index in Go with SIMD acceleration
 This package contains a bitmap implementation, backed by a slice of
 []uint64 and designed for dense small or medium collections. It focuses
 on high performance by avoiding heap allocations, unrolling loops and
 implementing SIMD vectorization in assembly.
 .
 Features:
  * Zero heap allocation for all important bitmap methods
  * SIMD-vectorized boolean algebra operations (And, Or, Xor, AndNot)
  * Bit counting with Min, Max, Count and related operations
  * Fast iteration over set bits using unrolled loops
  * In-place filtering based on user-defined predicates
  * Binary encoding with no-copy slice conversion
  * Clone and Clear for bitmap reusability
