xee_xpath/
atomic.rs

1//! Custom atomic types for XPath.
2//!
3//! Where atomic types cannot be defined using standard Rust types or
4//! external packages such as [`chrono`], [`ordered_float`] and [`rust_decimal`],
5//! Xee defines its own types.
6
7pub use xee_interpreter::atomic::{
8    BinaryType, Duration, GDay, GMonth, GMonthDay, GYear, GYearMonth, NaiveDateTimeWithOffset,
9    NaiveDateWithOffset, NaiveTimeWithOffset, StringType, YearMonthDuration,
10};