mod condition;
mod control;
mod expr;
mod float;
mod include;
mod matching;
mod segments;
mod value;
#[cfg(all(test, feature = "std"))]
pub(crate) use condition::eval_condition;
#[cfg(feature = "std")]
pub(crate) use control::register_loop_meta;
pub use segments::estimate_output_capacity;
pub(crate) use segments::render_interpolated_str;
#[cfg(not(feature = "std"))]
pub(crate) use segments::render_segments_into_no_std;
#[cfg(feature = "std")]
pub(crate) use segments::{render_segments, render_segments_into};
#[cfg(all(test, feature = "std"))]
#[path = "../render_tests.rs"]
mod render_tests;