{"id":43153132,"url":"https://github.com/f1monkey/bitmap","last_synced_at":"2026-02-01T00:28:47.040Z","repository":{"id":221405119,"uuid":"754272570","full_name":"f1monkey/bitmap","owner":"f1monkey","description":"Simple and stupid dense bitmap index implementation","archived":false,"fork":false,"pushed_at":"2024-02-15T23:23:55.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-02-16T23:34:49.466Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/f1monkey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-07T18:22:29.000Z","updated_at":"2024-02-16T23:34:49.467Z","dependencies_parsed_at":"2024-02-15T23:31:48.380Z","dependency_job_id":"6814984a-5e65-4ff1-8d7e-1ee3e9cffb93","html_url":"https://github.com/f1monkey/bitmap","commit_stats":null,"previous_names":["f1monkey/bitmap"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/f1monkey/bitmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Fbitmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Fbitmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Fbitmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Fbitmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f1monkey","download_url":"https://codeload.github.com/f1monkey/bitmap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Fbitmap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28961849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T23:03:11.038Z","status":"ssl_error","status_checked_at":"2026-01-31T22:56:44.691Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-01T00:28:46.612Z","updated_at":"2026-02-01T00:28:47.033Z","avatar_url":"https://github.com/f1monkey.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitmap\n\nYet another bitmap implementation written in go.\n\n## Installation\n\n```\n$ go get -v github.com/f1monkey/bitmap\n```\n\n## Usage\n\n```go\nfunc main() {\n    var b bitmap.Bitmap64\n\n    b.IsEmpty() // true\n\n    b.Set(0)\n    b.Has(0) // true\n    b.Remove(0)\n    b.Has(0) // false\n\n    b.Xor(1000)\n    b.Has(1000) // true\n    b.Xor(1000)\n    b.Has(1000) // false\n\n    b2 := b.Clone() // copy of \"b\"\n\n    b2.Range(func(n uint32) bool {\n        fmt.PrintLn(n)\n        return true\n    })\n\n    b.Or(b2) // in-place OR\n    b.And(b2) // in-place AND\n\n    // to string, from string\n    var b3 bitmap.Bitmap64\n    b3.Set(1)\n    b3.Set(100)\n    b3.String() // \"2|68719476736\"\n    b4, err := bitmap.FromString(\"2|68719476736\")\n\n    // Bitmap32 is backed by []uint32 slice\n    // Everything else is all the same\n    var b32 bitmap.Bitmap32\n\n    // Bitmap16 is backed by []uint16 slice\n    // Everything else is all the same\n    var b16 bitmap.Bitmap16\n\n    // Bitmap8 is backed by []uint8 slice\n    // Everything else is all the same\n    var b8 bitmap.Bitmap8\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff1monkey%2Fbitmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff1monkey%2Fbitmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff1monkey%2Fbitmap/lists"}