polylane 0.12.0

Portable and versatile SIMD.
Documentation
// Copyright 2025 Gabriel Bjørnager Jensen.
//
// This Source Code Form is subject to the terms of
// the Mozilla Public License, v. 2.0. If a copy of
// the MPL was not distributed with this file, you
// can obtain one at:
// <https://mozilla.org/MPL/2.0/>.

//! Numerical SIMD facilities.

mod simd_float_ext;
mod simd_int_ext;
mod simd_uint_ext;

pub use simd_float_ext::SimdFloatExt;
pub use simd_int_ext::SimdIntExt;
pub use simd_uint_ext::SimdUintExt;

pub(crate) mod seal {
	pub trait SimdFloatExt {}
	pub trait SimdIntExt   {}
	pub trait SimdUintExt  {}
}