//! Smart pointers for use within Yew.
//!
//! These all offer similar semantics to `std::rc::Rc`, but offer better ergonomics within Yew,
//! or functionality not available in `Rc`.
pub use Irc;
pub use Lrc;
pub use Mrc;
pub type IsZero = bool;