// lib.rs
// Original work Copyright 2014 The Rust Project Developers.
// Modified work Copyright 2018-2019 Daniel Mueller (deso@posteo.net).
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! A replacement of std::cell::RefCell adding advanced support for
//! mapping borrows.
pub use crateRef;
pub use crateRefCell;
pub use crateRefMut;
pub use crateRefVal;
pub use crateRefValMut;