typed_arch 0.1.0

typed std::arch intrinsics
Documentation
//! Typed `std::arch` intrinsics
#![feature(stdsimd, target_feature)]
#![no_std]

use core::{mem, simd};

mod arch {
    #[cfg(target_arch = "x86")]
    pub use core::arch::x86::*;

    #[cfg(target_arch = "x86_64")]
    pub use core::arch::x86_64::*;
}

#[cfg(target_arch = "x86")]
pub mod x86;

#[cfg(target_arch = "x86_64")]
pub mod x86_64;