bf-tree 0.4.10

Bf-Tree is a modern read-write-optimized concurrent larger-than-memory range index in Rust from Microsoft Research.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

#[cfg(all(feature = "shuttle", test))]
pub(crate) use shuttle::sync::*;

#[cfg(all(feature = "shuttle", test))]
pub(crate) use shuttle::thread;

#[cfg(not(all(feature = "shuttle", test)))]
pub(crate) use std::sync::*;

#[cfg(not(all(feature = "shuttle", test)))]
#[allow(unused_imports)]
pub(crate) use std::thread;