1// SPDX-License-Identifier: MIT OR Apache-2.0
2// Copyright (c) 2023, 2025 lacklustr@protonmail.com https://github.com/eadf
34// This file is part of vector-traits.
56/// A container for const vector values
7pub trait VectorConstants {
8type Vector;
9const ZERO: Self::Vector;
10}