devela 0.27.0

A development layer of coherence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// devela::sys::arch::_reexport_std

use crate::{_reexport, _tags};

_reexport! { rust: std::arch, location: "sys/arch", tag: _tags!(platform),
    doc: "Tests at *runtime* whether an `aarch64` feature is enabled.",
    @is_aarch64_feature_detected as detect_aarch64
}
_reexport! { rust: std::arch, location: "sys/arch", tag: _tags!(platform),
    doc: "Tests at *runtime* whether an `x86/x86-64` feature is enabled.",
    @is_x86_feature_detected as detect_x86
}