// 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/>.
//! Portable and versatile SIMD.
//!
//! This crate defines SIMD facilities thay may be used on any given platform in any way that ordinary arithmetic primitives are used.
extern crate self as polylane;
extern crate alloc;
extern crate std;
use *;