devela 0.29.0

A development substrate of coherence.
Documentation
// devela/src/sys/arch/_.rs
//
#![doc = crate::_DOC_SYS_ARCH!()] // public
#![doc = crate::_doc!(modules: crate::sys; arch)]
#![doc = crate::_doc!(flat:"sys")]
#![doc = crate::_doc!(extends: arch)]
//!
//! CPU, ISA, instruction-level reality.
//!
//! # Links
//! - <https://github.com/rust-lang/stdarch>
//! - <https://doc.rust-lang.org/reference/inline-assembly.html>
//
// NOTE In order to show in the docs all possible feature-gated functionality,
// they have to be compiled with `RUSTDOCFLAGS="-Ctarget-cpu=native"`.
// See:
// - /Cargo.toml::[package.metadata.docs.rs]
// - /.cargo/config.toml
// - /tools/check.rs
//

crate::mods_in! {
    mod _reexport_dep;
    mod _reexport_core;
    #[cfg(feature = "std")]
    mod _reexport_std;

    mod _helper; // _ARCH!

    mod_ namespace; // Arch
    mod_ wasm; // Wasm, w_v128
}
crate::mods_out! { // _mods, _reexports, _crate_internals
    _mods {
        pub use super::{
            namespace::_all::Arch,
            wasm::_all::*,
        };
    }
    _reexports {
        pub use super::_reexport_dep::*;
        pub use super::_reexport_core::*;
        #[cfg(feature = "std")]
        pub use super::_reexport_std::*;
    }
    _crate_internals {
        pub(crate) use super::_helper::*;
    }
}