//! Trait impls for core arrays.
//!
//! Implemented generically, delegating to the slice impls.
use crate::;
// Optimized implementation for arrays which coalesces them into word-sized chunks first,
// then performs [`Cmov`] at the word-level to cut down on the total number of instructions.
// Optimized implementation for arrays which coalesces them into word-sized chunks first,
// then performs [`CmovEq`] at the word-level to cut down on the total number of instructions.