//! Floating-point numbers with unbounded significand and exponent.
//!
//! This module implements floating-point numbers with [`RFloatContext`].
//! The associated storage type is [`RFloat`] ("Real Float") which
//! represent binary floating-point numbers with unbounded significand
//! and unbounded exponent.
//!
//! The [`RFloat`] type serves as an interchange format between
//! binary numbers since it is the least restrictive.
//!
pub use RFloat;
pub use RFloatContext;