Ross ROSS = Recommend OSS · open-source software intelligence for agents

bits-and-blooms/bitset

Go package implementing bitsets observed · 2026-08-28

github.com/bits-and-blooms/bitset · homepage · Go · BSD-3-Clause (permissive) observed · 2026-08-28

Health v2 · maintenance only

98/100

  • Activity 97
  • Release rhythm 97
  • Longevity 100
How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.

  • gap_med: 13
  • age_days: 5593
  • days_rel: 20
  • days_push: 20
  • n_releases_24m: 18

Full methodology

Adoption not part of the score

1513 stars · 191 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded

A Go library implementing bitsets, providing an efficient mapping between non-negative integers and boolean values. It supports individual bit operations plus full set algebra (union, intersection, difference, complement) with portable serialization.

Use cases

  • represent sets of integers compactly in Go
  • replace map[uint]bool with a memory-efficient structure
  • compute intersections and unions of integer sets
  • iterate over set bits efficiently
  • serialize bitsets to bytes or JSON
  • track membership flags for large ID spaces

When to choose

  • you need fast, memory-efficient set operations over non-negative integers in Go
  • you want battle-tested, fuzz-tested bitset code used in production systems
  • you need portable serialization of bitset state

When to avoid

  • you need sparse sets over very large ranges where compressed/roaring bitmaps are better
  • you need to store non-integer keys or arbitrary values
  • you work outside the Go ecosystem

Facets

library · maturity stable

serialization developer-tools developer-tools performance go cross-platform bitset bit-manipulation set-algebra data-structures algorithms

2 sources

Member repositories

RepositoryRoleHealth v2
bits-and-blooms/bitsetmain98

For agents

markdown · JSON · MCP: product_card(name="bits-and-blooms/bitset")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem