//! [![github]](https://github.com/tamaskis/rootfinder) [![crates-io]](https://crates.io/crates/rootfinder) [![docs-rs]](https://docs.rs/rootfinder)
//!
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
//! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
//!
//! Root-finding methods for both univariate, scalar-valued functions and multivariate, vector-valued functions.
//!
//! # Root-finding functions for univariate, scalar-valued functions
//!
//! `rootfinder` provides the following functions for finding the root of a univariate,
//! scalar-valued function, $f:\mathbb{R}\to\mathbb{R}$:
//!
//! | Method | Functions |
//! | ------ | --------- |
//! | bisection | [`root_bisection`]<BR>[`root_bisection_fast`] |
//! | Newton's | [`root_newton`]<BR>[`root_newton_fast`] |
// Linter setup.
// Module declarations.
pub
pub
// Re-exports.
pub use crate;
pub use crate;
pub use crateInterval;
pub use crate;
pub use crate;