//! Finite-difference meshers.
//!
//! Port of `ql/methods/finitedifferences/meshers/`. A mesher dresses the index
//! space of an
//! [`FdmLinearOpLayout`](super::operators::FdmLinearOpLayout) with the
//! coordinates of the grid points and the spacings between them, which is what
//! turns an index-space stencil into a numerical derivative.
//!
pub use concentrating_1d_mesher;
pub use Fdm1dMesher;
pub use ;
pub use FdmMesher;
pub use FdmMesherComposite;
pub use uniform_1d_mesher;
pub use UniformGridMesher;