f256 0.11.2

Octuple-precision floating-point arithmetic.
Documentation
// ---------------------------------------------------------------------------
// Copyright:   (c) 2023 ff. Michael Amrhein (michael@adrhinum.de)
// License:     This program is part of a larger application. For license
//              details please read the file LICENSE.TXT provided together
//              with the application.
// ---------------------------------------------------------------------------
// $Source$
// $Revision$

mod big_float;
mod bkm;
mod cbrt;
mod circular_fns;
mod exp;
mod fp492;
mod log;
mod pow;
pub(crate) mod sqrt;

use big_float::{Float, Float256, Float512};
use fp492::FP492;

use super::{BigUInt, HiLo, Parity, U256, U512};