sorted_vector_map/
lib.rs

1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under both the MIT license found in the
5 * LICENSE-MIT file in the root directory of this source tree and the Apache
6 * License, Version 2.0 found in the LICENSE-APACHE file in the root directory
7 * of this source tree.
8 */
9
10//! Ordered map implementation using a sorted vector
11
12pub mod map;
13pub mod set;
14
15pub use map::SortedVectorMap;
16pub use set::SortedVectorSet;
17
18#[doc(hidden)]
19#[macro_export]
20macro_rules! replace_expr {
21    ($_t:tt $sub:expr) => {
22        $sub
23    };
24}