blob: c080f8e533fbbb4cd5b1b042643dbf345574a71a [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
pub mod btree;
pub mod classic;
#[cfg(not(feature = "use_cowmap"))]
pub use classic::RangeMap;
#[cfg(feature = "use_cowmap")]
pub use btree::RangeMap2 as RangeMap;