diskann-label-filter 0.47.0

DiskANN is a fast approximate nearest neighbor search library for high dimensional data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) Microsoft Corporation.
 * Licensed under the MIT license.
 */

//! Set module for label storage backends.
//!
//! This module defines traits and implementations for working with labels as sets.
//! It provides a common abstraction over different backends, so the same interface can be
//! used regardless of the underlying system.

pub mod roaring_set;
pub mod roaring_set_provider;
pub mod traits;

pub use traits::{Set, SetProvider};