src/lib.rs

Thu, 04 Dec 2025 14:36:22 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Thu, 04 Dec 2025 14:36:22 -0500
changeset 3
fbdee8e4a78d
parent 0
e8f3b6c55ce7
permissions
-rw-r--r--

Added padded_iter to the Python interface, to deal with Fenics quirks

// The main documentation is in the README.
#![doc = include_str!("../README.md")]
// We use unicode. We would like to use much more of it than Rust allows.
// Live with it. Embrace it.
#![allow(uncommon_codepoints)]
#![allow(mixed_script_confusables)]
#![allow(confusable_idents)]

mod base;
pub use base::*;
mod delta;
pub use delta::*;
mod discrete;
pub use discrete::*;
pub mod merging;

#[cfg(feature = "pyo3")]
pub mod python;

mercurial