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/>.

#[derive(
	Clone,
	Copy,
	Debug,
	Eq,
	PartialEq,
)]
pub enum DataKind {
	U8,
	U16,
	U32,
	U64,
	U128,
	Usize,

	I8,
	I16,
	I32,
	I64,
	I128,
	Isize,

	F16,
	F32,
	F64,
	F128,

	ConstPtr,
	MutPtr,
}