[][src]Macro hektor::if_ssse3

macro_rules! if_ssse3 {
    ($yes:block else $no:block) => { ... };
}

Use this to make it simpler to handle the branch between using ssse3 or not.

The SIMD path is automatically wrapped in unsafe. Also, the cargo feature debug_force_no_ssse3 will cause this macro to pick the non-ssse3 path even if the CPU supports it. Use this for easy testing of the fallback path.