Files
core_arch
std_detect
1
2
3
4
5
6
7
8
9
//! Other operating systems

use crate::detect::Feature;

/// Performs run-time feature detection.
#[inline]
pub fn check_for(_x: Feature) -> bool {
    false
}