devela 0.27.0

A development layer of coherence.
Documentation
// devela::data::codec::hash
//
#![doc = crate::_DOC_DATA_CODEC_HASH!()] // public
#![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; // Adler32
mod fx; // HasherBuildFx, HasherFx.

#[cfg(feature = "hash")]
crate::items! {
    mod fnv; // HasherBuildFnv, HasherFnv
    mod pengy; // hash_pengy
}

crate::structural_mods! { // _mods, _reexports
    _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::*;
    }
}