#![doc = crate::_DOC_DATA_CODEC_HASH!()] #![doc = crate::_doc!(modules: crate::data::codec; hash)]
#![doc = crate::_doc!(flat:"data")]
#![doc = crate::_doc!(extends: hash)]
mod _reexport_core;
#[cfg(feature = "std")]
mod _reexport_std;
mod check; mod fx;
#[cfg(feature = "hash")]
crate::items! {
mod fnv; mod pengy; }
crate::structural_mods! { _mods {
pub use super::{
check::_all::*,
fx::*,
};
#[cfg(feature = "hash")]
#[cfg_attr(nightly_doc, doc(cfg(feature = "hash")))]
pub use super::{
fnv::*,
pengy::*,
};
}
_reexports{
pub use super::_reexport_core::*;
#[cfg(feature = "std")]
pub use super::_reexport_std::*;
}
}