Serialize index to binary (#273)

This commit is contained in:
ykiko
2025-10-07 18:21:44 +08:00
committed by GitHub
parent b705560557
commit 4c63c52487
21 changed files with 505 additions and 1706 deletions

11
include/Support/Bitmap.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#define ROARING_EXCEPTIONS 0
#define ROARING_TERMINATE(message) std::abort()
#include "roaring/roaring.hh"
namespace clice {
using Bitmap = roaring::Roaring;
}