devela 0.29.0

A development substrate of coherence.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// devela/src/sys/arch/_reexport_std.rs

use crate::{_reexport, _tags};

_reexport! { rust: std::arch,
    location: "sys/arch" => macro detect_aarch64, 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" => macro detect_x86, tag: _tags!(platform),
    doc: "Tests at *runtime* whether an `x86/x86-64` feature is enabled.",
    @is_x86_feature_detected as detect_x86
}