#[cfg(not(feature = "scalar-math"))]
use crate::BVec4A;
use crate::{BVec4, I16Vec4, I64Vec2, I64Vec3, IVec4, U16Vec4, U64Vec4, UVec4};
#[cfg(not(target_arch = "spirv"))]
use core::fmt;
use core::iter::{Product, Sum};
use core::{f32, ops::*};
#[inline(always)]
#[must_use]
pub const fn i64vec4(x: i64, y: i64, z: i64, w: i64) -> I64Vec4 {
    I64Vec4::new(x, y, z, w)
}
#[cfg_attr(not(target_arch = "spirv"), derive(Hash))]
#[derive(Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "cuda", repr(align(16)))]
#[cfg_attr(not(target_arch = "spirv"), repr(C))]
#[cfg_attr(target_arch = "spirv", repr(simd))]
pub struct I64Vec4 {
    pub x: i64,
    pub y: i64,
    pub z: i64,
    pub w: i64,
}
impl I64Vec4 {
    pub const ZERO: Self = Self::splat(0);
    pub const ONE: Self = Self::splat(1);
    pub const NEG_ONE: Self = Self::splat(-1);
    pub const MIN: Self = Self::splat(i64::MIN);
    pub const MAX: Self = Self::splat(i64::MAX);
    pub const X: Self = Self::new(1, 0, 0, 0);
    pub const Y: Self = Self::new(0, 1, 0, 0);
    pub const Z: Self = Self::new(0, 0, 1, 0);
    pub const W: Self = Self::new(0, 0, 0, 1);
    pub const NEG_X: Self = Self::new(-1, 0, 0, 0);
    pub const NEG_Y: Self = Self::new(0, -1, 0, 0);
    pub const NEG_Z: Self = Self::new(0, 0, -1, 0);
    pub const NEG_W: Self = Self::new(0, 0, 0, -1);
    pub const AXES: [Self; 4] = [Self::X, Self::Y, Self::Z, Self::W];
    #[inline(always)]
    #[must_use]
    pub const fn new(x: i64, y: i64, z: i64, w: i64) -> Self {
        Self { x, y, z, w }
    }
    #[inline]
    #[must_use]
    pub const fn splat(v: i64) -> Self {
        Self {
            x: v,
            y: v,
            z: v,
            w: v,
        }
    }
    #[inline]
    #[must_use]
    pub fn map<F>(self, f: F) -> Self
    where
        F: Fn(i64) -> i64,
    {
        Self::new(f(self.x), f(self.y), f(self.z), f(self.w))
    }
    #[inline]
    #[must_use]
    pub fn select(mask: BVec4, if_true: Self, if_false: Self) -> Self {
        Self {
            x: if mask.test(0) { if_true.x } else { if_false.x },
            y: if mask.test(1) { if_true.y } else { if_false.y },
            z: if mask.test(2) { if_true.z } else { if_false.z },
            w: if mask.test(3) { if_true.w } else { if_false.w },
        }
    }
    #[inline]
    #[must_use]
    pub const fn from_array(a: [i64; 4]) -> Self {
        Self::new(a[0], a[1], a[2], a[3])
    }
    #[inline]
    #[must_use]
    pub const fn to_array(&self) -> [i64; 4] {
        [self.x, self.y, self.z, self.w]
    }
    #[inline]
    #[must_use]
    pub const fn from_slice(slice: &[i64]) -> Self {
        Self::new(slice[0], slice[1], slice[2], slice[3])
    }
    #[inline]
    pub fn write_to_slice(self, slice: &mut [i64]) {
        slice[0] = self.x;
        slice[1] = self.y;
        slice[2] = self.z;
        slice[3] = self.w;
    }
    #[inline]
    #[must_use]
    pub fn truncate(self) -> I64Vec3 {
        use crate::swizzles::Vec4Swizzles;
        self.xyz()
    }
    #[inline]
    #[must_use]
    pub fn with_x(mut self, x: i64) -> Self {
        self.x = x;
        self
    }
    #[inline]
    #[must_use]
    pub fn with_y(mut self, y: i64) -> Self {
        self.y = y;
        self
    }
    #[inline]
    #[must_use]
    pub fn with_z(mut self, z: i64) -> Self {
        self.z = z;
        self
    }
    #[inline]
    #[must_use]
    pub fn with_w(mut self, w: i64) -> Self {
        self.w = w;
        self
    }
    #[inline]
    #[must_use]
    pub fn dot(self, rhs: Self) -> i64 {
        (self.x * rhs.x) + (self.y * rhs.y) + (self.z * rhs.z) + (self.w * rhs.w)
    }
    #[inline]
    #[must_use]
    pub fn dot_into_vec(self, rhs: Self) -> Self {
        Self::splat(self.dot(rhs))
    }
    #[inline]
    #[must_use]
    pub fn min(self, rhs: Self) -> Self {
        Self {
            x: self.x.min(rhs.x),
            y: self.y.min(rhs.y),
            z: self.z.min(rhs.z),
            w: self.w.min(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub fn max(self, rhs: Self) -> Self {
        Self {
            x: self.x.max(rhs.x),
            y: self.y.max(rhs.y),
            z: self.z.max(rhs.z),
            w: self.w.max(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub fn clamp(self, min: Self, max: Self) -> Self {
        glam_assert!(min.cmple(max).all(), "clamp: expected min <= max");
        self.max(min).min(max)
    }
    #[inline]
    #[must_use]
    pub fn min_element(self) -> i64 {
        self.x.min(self.y.min(self.z.min(self.w)))
    }
    #[inline]
    #[must_use]
    pub fn max_element(self) -> i64 {
        self.x.max(self.y.max(self.z.max(self.w)))
    }
    #[inline]
    #[must_use]
    pub fn element_sum(self) -> i64 {
        self.x + self.y + self.z + self.w
    }
    #[inline]
    #[must_use]
    pub fn element_product(self) -> i64 {
        self.x * self.y * self.z * self.w
    }
    #[inline]
    #[must_use]
    pub fn cmpeq(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.eq(&rhs.x),
            self.y.eq(&rhs.y),
            self.z.eq(&rhs.z),
            self.w.eq(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn cmpne(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.ne(&rhs.x),
            self.y.ne(&rhs.y),
            self.z.ne(&rhs.z),
            self.w.ne(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn cmpge(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.ge(&rhs.x),
            self.y.ge(&rhs.y),
            self.z.ge(&rhs.z),
            self.w.ge(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn cmpgt(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.gt(&rhs.x),
            self.y.gt(&rhs.y),
            self.z.gt(&rhs.z),
            self.w.gt(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn cmple(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.le(&rhs.x),
            self.y.le(&rhs.y),
            self.z.le(&rhs.z),
            self.w.le(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn cmplt(self, rhs: Self) -> BVec4 {
        BVec4::new(
            self.x.lt(&rhs.x),
            self.y.lt(&rhs.y),
            self.z.lt(&rhs.z),
            self.w.lt(&rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn abs(self) -> Self {
        Self {
            x: self.x.abs(),
            y: self.y.abs(),
            z: self.z.abs(),
            w: self.w.abs(),
        }
    }
    #[inline]
    #[must_use]
    pub fn signum(self) -> Self {
        Self {
            x: self.x.signum(),
            y: self.y.signum(),
            z: self.z.signum(),
            w: self.w.signum(),
        }
    }
    #[inline]
    #[must_use]
    pub fn is_negative_bitmask(self) -> u32 {
        (self.x.is_negative() as u32)
            | (self.y.is_negative() as u32) << 1
            | (self.z.is_negative() as u32) << 2
            | (self.w.is_negative() as u32) << 3
    }
    #[doc(alias = "magnitude2")]
    #[inline]
    #[must_use]
    pub fn length_squared(self) -> i64 {
        self.dot(self)
    }
    #[inline]
    #[must_use]
    pub fn distance_squared(self, rhs: Self) -> i64 {
        (self - rhs).length_squared()
    }
    #[inline]
    #[must_use]
    pub fn div_euclid(self, rhs: Self) -> Self {
        Self::new(
            self.x.div_euclid(rhs.x),
            self.y.div_euclid(rhs.y),
            self.z.div_euclid(rhs.z),
            self.w.div_euclid(rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn rem_euclid(self, rhs: Self) -> Self {
        Self::new(
            self.x.rem_euclid(rhs.x),
            self.y.rem_euclid(rhs.y),
            self.z.rem_euclid(rhs.z),
            self.w.rem_euclid(rhs.w),
        )
    }
    #[inline]
    #[must_use]
    pub fn as_vec4(&self) -> crate::Vec4 {
        crate::Vec4::new(self.x as f32, self.y as f32, self.z as f32, self.w as f32)
    }
    #[inline]
    #[must_use]
    pub fn as_dvec4(&self) -> crate::DVec4 {
        crate::DVec4::new(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
    }
    #[inline]
    #[must_use]
    pub fn as_i16vec4(&self) -> crate::I16Vec4 {
        crate::I16Vec4::new(self.x as i16, self.y as i16, self.z as i16, self.w as i16)
    }
    #[inline]
    #[must_use]
    pub fn as_u16vec4(&self) -> crate::U16Vec4 {
        crate::U16Vec4::new(self.x as u16, self.y as u16, self.z as u16, self.w as u16)
    }
    #[inline]
    #[must_use]
    pub fn as_ivec4(&self) -> crate::IVec4 {
        crate::IVec4::new(self.x as i32, self.y as i32, self.z as i32, self.w as i32)
    }
    #[inline]
    #[must_use]
    pub fn as_uvec4(&self) -> crate::UVec4 {
        crate::UVec4::new(self.x as u32, self.y as u32, self.z as u32, self.w as u32)
    }
    #[inline]
    #[must_use]
    pub fn as_u64vec4(&self) -> crate::U64Vec4 {
        crate::U64Vec4::new(self.x as u64, self.y as u64, self.z as u64, self.w as u64)
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_add(self, rhs: Self) -> Self {
        Self {
            x: self.x.wrapping_add(rhs.x),
            y: self.y.wrapping_add(rhs.y),
            z: self.z.wrapping_add(rhs.z),
            w: self.w.wrapping_add(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_sub(self, rhs: Self) -> Self {
        Self {
            x: self.x.wrapping_sub(rhs.x),
            y: self.y.wrapping_sub(rhs.y),
            z: self.z.wrapping_sub(rhs.z),
            w: self.w.wrapping_sub(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_mul(self, rhs: Self) -> Self {
        Self {
            x: self.x.wrapping_mul(rhs.x),
            y: self.y.wrapping_mul(rhs.y),
            z: self.z.wrapping_mul(rhs.z),
            w: self.w.wrapping_mul(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_div(self, rhs: Self) -> Self {
        Self {
            x: self.x.wrapping_div(rhs.x),
            y: self.y.wrapping_div(rhs.y),
            z: self.z.wrapping_div(rhs.z),
            w: self.w.wrapping_div(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_add(self, rhs: Self) -> Self {
        Self {
            x: self.x.saturating_add(rhs.x),
            y: self.y.saturating_add(rhs.y),
            z: self.z.saturating_add(rhs.z),
            w: self.w.saturating_add(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_sub(self, rhs: Self) -> Self {
        Self {
            x: self.x.saturating_sub(rhs.x),
            y: self.y.saturating_sub(rhs.y),
            z: self.z.saturating_sub(rhs.z),
            w: self.w.saturating_sub(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_mul(self, rhs: Self) -> Self {
        Self {
            x: self.x.saturating_mul(rhs.x),
            y: self.y.saturating_mul(rhs.y),
            z: self.z.saturating_mul(rhs.z),
            w: self.w.saturating_mul(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_div(self, rhs: Self) -> Self {
        Self {
            x: self.x.saturating_div(rhs.x),
            y: self.y.saturating_div(rhs.y),
            z: self.z.saturating_div(rhs.z),
            w: self.w.saturating_div(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_add_unsigned(self, rhs: U64Vec4) -> Self {
        Self {
            x: self.x.wrapping_add_unsigned(rhs.x),
            y: self.y.wrapping_add_unsigned(rhs.y),
            z: self.z.wrapping_add_unsigned(rhs.z),
            w: self.w.wrapping_add_unsigned(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn wrapping_sub_unsigned(self, rhs: U64Vec4) -> Self {
        Self {
            x: self.x.wrapping_sub_unsigned(rhs.x),
            y: self.y.wrapping_sub_unsigned(rhs.y),
            z: self.z.wrapping_sub_unsigned(rhs.z),
            w: self.w.wrapping_sub_unsigned(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_add_unsigned(self, rhs: U64Vec4) -> Self {
        Self {
            x: self.x.saturating_add_unsigned(rhs.x),
            y: self.y.saturating_add_unsigned(rhs.y),
            z: self.z.saturating_add_unsigned(rhs.z),
            w: self.w.saturating_add_unsigned(rhs.w),
        }
    }
    #[inline]
    #[must_use]
    pub const fn saturating_sub_unsigned(self, rhs: U64Vec4) -> Self {
        Self {
            x: self.x.saturating_sub_unsigned(rhs.x),
            y: self.y.saturating_sub_unsigned(rhs.y),
            z: self.z.saturating_sub_unsigned(rhs.z),
            w: self.w.saturating_sub_unsigned(rhs.w),
        }
    }
}
impl Default for I64Vec4 {
    #[inline(always)]
    fn default() -> Self {
        Self::ZERO
    }
}
impl Div<I64Vec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn div(self, rhs: Self) -> Self {
        Self {
            x: self.x.div(rhs.x),
            y: self.y.div(rhs.y),
            z: self.z.div(rhs.z),
            w: self.w.div(rhs.w),
        }
    }
}
impl Div<&I64Vec4> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &I64Vec4) -> I64Vec4 {
        self.div(*rhs)
    }
}
impl Div<&I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).div(*rhs)
    }
}
impl Div<I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).div(rhs)
    }
}
impl DivAssign<I64Vec4> for I64Vec4 {
    #[inline]
    fn div_assign(&mut self, rhs: Self) {
        self.x.div_assign(rhs.x);
        self.y.div_assign(rhs.y);
        self.z.div_assign(rhs.z);
        self.w.div_assign(rhs.w);
    }
}
impl DivAssign<&Self> for I64Vec4 {
    #[inline]
    fn div_assign(&mut self, rhs: &Self) {
        self.div_assign(*rhs)
    }
}
impl Div<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn div(self, rhs: i64) -> Self {
        Self {
            x: self.x.div(rhs),
            y: self.y.div(rhs),
            z: self.z.div(rhs),
            w: self.w.div(rhs),
        }
    }
}
impl Div<&i64> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &i64) -> I64Vec4 {
        self.div(*rhs)
    }
}
impl Div<&i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &i64) -> I64Vec4 {
        (*self).div(*rhs)
    }
}
impl Div<i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: i64) -> I64Vec4 {
        (*self).div(rhs)
    }
}
impl DivAssign<i64> for I64Vec4 {
    #[inline]
    fn div_assign(&mut self, rhs: i64) {
        self.x.div_assign(rhs);
        self.y.div_assign(rhs);
        self.z.div_assign(rhs);
        self.w.div_assign(rhs);
    }
}
impl DivAssign<&i64> for I64Vec4 {
    #[inline]
    fn div_assign(&mut self, rhs: &i64) {
        self.div_assign(*rhs)
    }
}
impl Div<I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: I64Vec4) -> I64Vec4 {
        I64Vec4 {
            x: self.div(rhs.x),
            y: self.div(rhs.y),
            z: self.div(rhs.z),
            w: self.div(rhs.w),
        }
    }
}
impl Div<&I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &I64Vec4) -> I64Vec4 {
        self.div(*rhs)
    }
}
impl Div<&I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).div(*rhs)
    }
}
impl Div<I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn div(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).div(rhs)
    }
}
impl Mul<I64Vec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn mul(self, rhs: Self) -> Self {
        Self {
            x: self.x.mul(rhs.x),
            y: self.y.mul(rhs.y),
            z: self.z.mul(rhs.z),
            w: self.w.mul(rhs.w),
        }
    }
}
impl Mul<&I64Vec4> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &I64Vec4) -> I64Vec4 {
        self.mul(*rhs)
    }
}
impl Mul<&I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).mul(*rhs)
    }
}
impl Mul<I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).mul(rhs)
    }
}
impl MulAssign<I64Vec4> for I64Vec4 {
    #[inline]
    fn mul_assign(&mut self, rhs: Self) {
        self.x.mul_assign(rhs.x);
        self.y.mul_assign(rhs.y);
        self.z.mul_assign(rhs.z);
        self.w.mul_assign(rhs.w);
    }
}
impl MulAssign<&Self> for I64Vec4 {
    #[inline]
    fn mul_assign(&mut self, rhs: &Self) {
        self.mul_assign(*rhs)
    }
}
impl Mul<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn mul(self, rhs: i64) -> Self {
        Self {
            x: self.x.mul(rhs),
            y: self.y.mul(rhs),
            z: self.z.mul(rhs),
            w: self.w.mul(rhs),
        }
    }
}
impl Mul<&i64> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &i64) -> I64Vec4 {
        self.mul(*rhs)
    }
}
impl Mul<&i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &i64) -> I64Vec4 {
        (*self).mul(*rhs)
    }
}
impl Mul<i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: i64) -> I64Vec4 {
        (*self).mul(rhs)
    }
}
impl MulAssign<i64> for I64Vec4 {
    #[inline]
    fn mul_assign(&mut self, rhs: i64) {
        self.x.mul_assign(rhs);
        self.y.mul_assign(rhs);
        self.z.mul_assign(rhs);
        self.w.mul_assign(rhs);
    }
}
impl MulAssign<&i64> for I64Vec4 {
    #[inline]
    fn mul_assign(&mut self, rhs: &i64) {
        self.mul_assign(*rhs)
    }
}
impl Mul<I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: I64Vec4) -> I64Vec4 {
        I64Vec4 {
            x: self.mul(rhs.x),
            y: self.mul(rhs.y),
            z: self.mul(rhs.z),
            w: self.mul(rhs.w),
        }
    }
}
impl Mul<&I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &I64Vec4) -> I64Vec4 {
        self.mul(*rhs)
    }
}
impl Mul<&I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).mul(*rhs)
    }
}
impl Mul<I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn mul(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).mul(rhs)
    }
}
impl Add<I64Vec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn add(self, rhs: Self) -> Self {
        Self {
            x: self.x.add(rhs.x),
            y: self.y.add(rhs.y),
            z: self.z.add(rhs.z),
            w: self.w.add(rhs.w),
        }
    }
}
impl Add<&I64Vec4> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &I64Vec4) -> I64Vec4 {
        self.add(*rhs)
    }
}
impl Add<&I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).add(*rhs)
    }
}
impl Add<I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).add(rhs)
    }
}
impl AddAssign<I64Vec4> for I64Vec4 {
    #[inline]
    fn add_assign(&mut self, rhs: Self) {
        self.x.add_assign(rhs.x);
        self.y.add_assign(rhs.y);
        self.z.add_assign(rhs.z);
        self.w.add_assign(rhs.w);
    }
}
impl AddAssign<&Self> for I64Vec4 {
    #[inline]
    fn add_assign(&mut self, rhs: &Self) {
        self.add_assign(*rhs)
    }
}
impl Add<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn add(self, rhs: i64) -> Self {
        Self {
            x: self.x.add(rhs),
            y: self.y.add(rhs),
            z: self.z.add(rhs),
            w: self.w.add(rhs),
        }
    }
}
impl Add<&i64> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &i64) -> I64Vec4 {
        self.add(*rhs)
    }
}
impl Add<&i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &i64) -> I64Vec4 {
        (*self).add(*rhs)
    }
}
impl Add<i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: i64) -> I64Vec4 {
        (*self).add(rhs)
    }
}
impl AddAssign<i64> for I64Vec4 {
    #[inline]
    fn add_assign(&mut self, rhs: i64) {
        self.x.add_assign(rhs);
        self.y.add_assign(rhs);
        self.z.add_assign(rhs);
        self.w.add_assign(rhs);
    }
}
impl AddAssign<&i64> for I64Vec4 {
    #[inline]
    fn add_assign(&mut self, rhs: &i64) {
        self.add_assign(*rhs)
    }
}
impl Add<I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: I64Vec4) -> I64Vec4 {
        I64Vec4 {
            x: self.add(rhs.x),
            y: self.add(rhs.y),
            z: self.add(rhs.z),
            w: self.add(rhs.w),
        }
    }
}
impl Add<&I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &I64Vec4) -> I64Vec4 {
        self.add(*rhs)
    }
}
impl Add<&I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).add(*rhs)
    }
}
impl Add<I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn add(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).add(rhs)
    }
}
impl Sub<I64Vec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn sub(self, rhs: Self) -> Self {
        Self {
            x: self.x.sub(rhs.x),
            y: self.y.sub(rhs.y),
            z: self.z.sub(rhs.z),
            w: self.w.sub(rhs.w),
        }
    }
}
impl Sub<&I64Vec4> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &I64Vec4) -> I64Vec4 {
        self.sub(*rhs)
    }
}
impl Sub<&I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).sub(*rhs)
    }
}
impl Sub<I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).sub(rhs)
    }
}
impl SubAssign<I64Vec4> for I64Vec4 {
    #[inline]
    fn sub_assign(&mut self, rhs: I64Vec4) {
        self.x.sub_assign(rhs.x);
        self.y.sub_assign(rhs.y);
        self.z.sub_assign(rhs.z);
        self.w.sub_assign(rhs.w);
    }
}
impl SubAssign<&Self> for I64Vec4 {
    #[inline]
    fn sub_assign(&mut self, rhs: &Self) {
        self.sub_assign(*rhs)
    }
}
impl Sub<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn sub(self, rhs: i64) -> Self {
        Self {
            x: self.x.sub(rhs),
            y: self.y.sub(rhs),
            z: self.z.sub(rhs),
            w: self.w.sub(rhs),
        }
    }
}
impl Sub<&i64> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &i64) -> I64Vec4 {
        self.sub(*rhs)
    }
}
impl Sub<&i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &i64) -> I64Vec4 {
        (*self).sub(*rhs)
    }
}
impl Sub<i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: i64) -> I64Vec4 {
        (*self).sub(rhs)
    }
}
impl SubAssign<i64> for I64Vec4 {
    #[inline]
    fn sub_assign(&mut self, rhs: i64) {
        self.x.sub_assign(rhs);
        self.y.sub_assign(rhs);
        self.z.sub_assign(rhs);
        self.w.sub_assign(rhs);
    }
}
impl SubAssign<&i64> for I64Vec4 {
    #[inline]
    fn sub_assign(&mut self, rhs: &i64) {
        self.sub_assign(*rhs)
    }
}
impl Sub<I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: I64Vec4) -> I64Vec4 {
        I64Vec4 {
            x: self.sub(rhs.x),
            y: self.sub(rhs.y),
            z: self.sub(rhs.z),
            w: self.sub(rhs.w),
        }
    }
}
impl Sub<&I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &I64Vec4) -> I64Vec4 {
        self.sub(*rhs)
    }
}
impl Sub<&I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).sub(*rhs)
    }
}
impl Sub<I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn sub(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).sub(rhs)
    }
}
impl Rem<I64Vec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn rem(self, rhs: Self) -> Self {
        Self {
            x: self.x.rem(rhs.x),
            y: self.y.rem(rhs.y),
            z: self.z.rem(rhs.z),
            w: self.w.rem(rhs.w),
        }
    }
}
impl Rem<&I64Vec4> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &I64Vec4) -> I64Vec4 {
        self.rem(*rhs)
    }
}
impl Rem<&I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).rem(*rhs)
    }
}
impl Rem<I64Vec4> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).rem(rhs)
    }
}
impl RemAssign<I64Vec4> for I64Vec4 {
    #[inline]
    fn rem_assign(&mut self, rhs: Self) {
        self.x.rem_assign(rhs.x);
        self.y.rem_assign(rhs.y);
        self.z.rem_assign(rhs.z);
        self.w.rem_assign(rhs.w);
    }
}
impl RemAssign<&Self> for I64Vec4 {
    #[inline]
    fn rem_assign(&mut self, rhs: &Self) {
        self.rem_assign(*rhs)
    }
}
impl Rem<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn rem(self, rhs: i64) -> Self {
        Self {
            x: self.x.rem(rhs),
            y: self.y.rem(rhs),
            z: self.z.rem(rhs),
            w: self.w.rem(rhs),
        }
    }
}
impl Rem<&i64> for I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &i64) -> I64Vec4 {
        self.rem(*rhs)
    }
}
impl Rem<&i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &i64) -> I64Vec4 {
        (*self).rem(*rhs)
    }
}
impl Rem<i64> for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: i64) -> I64Vec4 {
        (*self).rem(rhs)
    }
}
impl RemAssign<i64> for I64Vec4 {
    #[inline]
    fn rem_assign(&mut self, rhs: i64) {
        self.x.rem_assign(rhs);
        self.y.rem_assign(rhs);
        self.z.rem_assign(rhs);
        self.w.rem_assign(rhs);
    }
}
impl RemAssign<&i64> for I64Vec4 {
    #[inline]
    fn rem_assign(&mut self, rhs: &i64) {
        self.rem_assign(*rhs)
    }
}
impl Rem<I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: I64Vec4) -> I64Vec4 {
        I64Vec4 {
            x: self.rem(rhs.x),
            y: self.rem(rhs.y),
            z: self.rem(rhs.z),
            w: self.rem(rhs.w),
        }
    }
}
impl Rem<&I64Vec4> for i64 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &I64Vec4) -> I64Vec4 {
        self.rem(*rhs)
    }
}
impl Rem<&I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: &I64Vec4) -> I64Vec4 {
        (*self).rem(*rhs)
    }
}
impl Rem<I64Vec4> for &i64 {
    type Output = I64Vec4;
    #[inline]
    fn rem(self, rhs: I64Vec4) -> I64Vec4 {
        (*self).rem(rhs)
    }
}
#[cfg(not(target_arch = "spirv"))]
impl AsRef<[i64; 4]> for I64Vec4 {
    #[inline]
    fn as_ref(&self) -> &[i64; 4] {
        unsafe { &*(self as *const I64Vec4 as *const [i64; 4]) }
    }
}
#[cfg(not(target_arch = "spirv"))]
impl AsMut<[i64; 4]> for I64Vec4 {
    #[inline]
    fn as_mut(&mut self) -> &mut [i64; 4] {
        unsafe { &mut *(self as *mut I64Vec4 as *mut [i64; 4]) }
    }
}
impl Sum for I64Vec4 {
    #[inline]
    fn sum<I>(iter: I) -> Self
    where
        I: Iterator<Item = Self>,
    {
        iter.fold(Self::ZERO, Self::add)
    }
}
impl<'a> Sum<&'a Self> for I64Vec4 {
    #[inline]
    fn sum<I>(iter: I) -> Self
    where
        I: Iterator<Item = &'a Self>,
    {
        iter.fold(Self::ZERO, |a, &b| Self::add(a, b))
    }
}
impl Product for I64Vec4 {
    #[inline]
    fn product<I>(iter: I) -> Self
    where
        I: Iterator<Item = Self>,
    {
        iter.fold(Self::ONE, Self::mul)
    }
}
impl<'a> Product<&'a Self> for I64Vec4 {
    #[inline]
    fn product<I>(iter: I) -> Self
    where
        I: Iterator<Item = &'a Self>,
    {
        iter.fold(Self::ONE, |a, &b| Self::mul(a, b))
    }
}
impl Neg for I64Vec4 {
    type Output = Self;
    #[inline]
    fn neg(self) -> Self {
        Self {
            x: self.x.neg(),
            y: self.y.neg(),
            z: self.z.neg(),
            w: self.w.neg(),
        }
    }
}
impl Neg for &I64Vec4 {
    type Output = I64Vec4;
    #[inline]
    fn neg(self) -> I64Vec4 {
        (*self).neg()
    }
}
impl Not for I64Vec4 {
    type Output = Self;
    #[inline]
    fn not(self) -> Self::Output {
        Self {
            x: self.x.not(),
            y: self.y.not(),
            z: self.z.not(),
            w: self.w.not(),
        }
    }
}
impl BitAnd for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitand(self, rhs: Self) -> Self::Output {
        Self {
            x: self.x.bitand(rhs.x),
            y: self.y.bitand(rhs.y),
            z: self.z.bitand(rhs.z),
            w: self.w.bitand(rhs.w),
        }
    }
}
impl BitOr for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitor(self, rhs: Self) -> Self::Output {
        Self {
            x: self.x.bitor(rhs.x),
            y: self.y.bitor(rhs.y),
            z: self.z.bitor(rhs.z),
            w: self.w.bitor(rhs.w),
        }
    }
}
impl BitXor for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitxor(self, rhs: Self) -> Self::Output {
        Self {
            x: self.x.bitxor(rhs.x),
            y: self.y.bitxor(rhs.y),
            z: self.z.bitxor(rhs.z),
            w: self.w.bitxor(rhs.w),
        }
    }
}
impl BitAnd<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitand(self, rhs: i64) -> Self::Output {
        Self {
            x: self.x.bitand(rhs),
            y: self.y.bitand(rhs),
            z: self.z.bitand(rhs),
            w: self.w.bitand(rhs),
        }
    }
}
impl BitOr<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitor(self, rhs: i64) -> Self::Output {
        Self {
            x: self.x.bitor(rhs),
            y: self.y.bitor(rhs),
            z: self.z.bitor(rhs),
            w: self.w.bitor(rhs),
        }
    }
}
impl BitXor<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn bitxor(self, rhs: i64) -> Self::Output {
        Self {
            x: self.x.bitxor(rhs),
            y: self.y.bitxor(rhs),
            z: self.z.bitxor(rhs),
            w: self.w.bitxor(rhs),
        }
    }
}
impl Shl<i8> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: i8) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<i8> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: i8) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<i16> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: i16) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<i16> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: i16) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<i32> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: i32) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<i32> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: i32) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: i64) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<i64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: i64) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<u8> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: u8) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<u8> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: u8) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<u16> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: u16) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<u16> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: u16) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<u32> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: u32) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<u32> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: u32) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<u64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: u64) -> Self::Output {
        Self {
            x: self.x.shl(rhs),
            y: self.y.shl(rhs),
            z: self.z.shl(rhs),
            w: self.w.shl(rhs),
        }
    }
}
impl Shr<u64> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: u64) -> Self::Output {
        Self {
            x: self.x.shr(rhs),
            y: self.y.shr(rhs),
            z: self.z.shr(rhs),
            w: self.w.shr(rhs),
        }
    }
}
impl Shl<crate::IVec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: crate::IVec4) -> Self::Output {
        Self {
            x: self.x.shl(rhs.x),
            y: self.y.shl(rhs.y),
            z: self.z.shl(rhs.z),
            w: self.w.shl(rhs.w),
        }
    }
}
impl Shr<crate::IVec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: crate::IVec4) -> Self::Output {
        Self {
            x: self.x.shr(rhs.x),
            y: self.y.shr(rhs.y),
            z: self.z.shr(rhs.z),
            w: self.w.shr(rhs.w),
        }
    }
}
impl Shl<crate::UVec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shl(self, rhs: crate::UVec4) -> Self::Output {
        Self {
            x: self.x.shl(rhs.x),
            y: self.y.shl(rhs.y),
            z: self.z.shl(rhs.z),
            w: self.w.shl(rhs.w),
        }
    }
}
impl Shr<crate::UVec4> for I64Vec4 {
    type Output = Self;
    #[inline]
    fn shr(self, rhs: crate::UVec4) -> Self::Output {
        Self {
            x: self.x.shr(rhs.x),
            y: self.y.shr(rhs.y),
            z: self.z.shr(rhs.z),
            w: self.w.shr(rhs.w),
        }
    }
}
impl Index<usize> for I64Vec4 {
    type Output = i64;
    #[inline]
    fn index(&self, index: usize) -> &Self::Output {
        match index {
            0 => &self.x,
            1 => &self.y,
            2 => &self.z,
            3 => &self.w,
            _ => panic!("index out of bounds"),
        }
    }
}
impl IndexMut<usize> for I64Vec4 {
    #[inline]
    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
        match index {
            0 => &mut self.x,
            1 => &mut self.y,
            2 => &mut self.z,
            3 => &mut self.w,
            _ => panic!("index out of bounds"),
        }
    }
}
#[cfg(not(target_arch = "spirv"))]
impl fmt::Display for I64Vec4 {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "[{}, {}, {}, {}]", self.x, self.y, self.z, self.w)
    }
}
#[cfg(not(target_arch = "spirv"))]
impl fmt::Debug for I64Vec4 {
    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt.debug_tuple(stringify!(I64Vec4))
            .field(&self.x)
            .field(&self.y)
            .field(&self.z)
            .field(&self.w)
            .finish()
    }
}
impl From<[i64; 4]> for I64Vec4 {
    #[inline]
    fn from(a: [i64; 4]) -> Self {
        Self::new(a[0], a[1], a[2], a[3])
    }
}
impl From<I64Vec4> for [i64; 4] {
    #[inline]
    fn from(v: I64Vec4) -> Self {
        [v.x, v.y, v.z, v.w]
    }
}
impl From<(i64, i64, i64, i64)> for I64Vec4 {
    #[inline]
    fn from(t: (i64, i64, i64, i64)) -> Self {
        Self::new(t.0, t.1, t.2, t.3)
    }
}
impl From<I64Vec4> for (i64, i64, i64, i64) {
    #[inline]
    fn from(v: I64Vec4) -> Self {
        (v.x, v.y, v.z, v.w)
    }
}
impl From<(I64Vec3, i64)> for I64Vec4 {
    #[inline]
    fn from((v, w): (I64Vec3, i64)) -> Self {
        Self::new(v.x, v.y, v.z, w)
    }
}
impl From<(i64, I64Vec3)> for I64Vec4 {
    #[inline]
    fn from((x, v): (i64, I64Vec3)) -> Self {
        Self::new(x, v.x, v.y, v.z)
    }
}
impl From<(I64Vec2, i64, i64)> for I64Vec4 {
    #[inline]
    fn from((v, z, w): (I64Vec2, i64, i64)) -> Self {
        Self::new(v.x, v.y, z, w)
    }
}
impl From<(I64Vec2, I64Vec2)> for I64Vec4 {
    #[inline]
    fn from((v, u): (I64Vec2, I64Vec2)) -> Self {
        Self::new(v.x, v.y, u.x, u.y)
    }
}
impl From<I16Vec4> for I64Vec4 {
    #[inline]
    fn from(v: I16Vec4) -> Self {
        Self::new(
            i64::from(v.x),
            i64::from(v.y),
            i64::from(v.z),
            i64::from(v.w),
        )
    }
}
impl From<U16Vec4> for I64Vec4 {
    #[inline]
    fn from(v: U16Vec4) -> Self {
        Self::new(
            i64::from(v.x),
            i64::from(v.y),
            i64::from(v.z),
            i64::from(v.w),
        )
    }
}
impl From<IVec4> for I64Vec4 {
    #[inline]
    fn from(v: IVec4) -> Self {
        Self::new(
            i64::from(v.x),
            i64::from(v.y),
            i64::from(v.z),
            i64::from(v.w),
        )
    }
}
impl From<UVec4> for I64Vec4 {
    #[inline]
    fn from(v: UVec4) -> Self {
        Self::new(
            i64::from(v.x),
            i64::from(v.y),
            i64::from(v.z),
            i64::from(v.w),
        )
    }
}
impl TryFrom<U64Vec4> for I64Vec4 {
    type Error = core::num::TryFromIntError;
    #[inline]
    fn try_from(v: U64Vec4) -> Result<Self, Self::Error> {
        Ok(Self::new(
            i64::try_from(v.x)?,
            i64::try_from(v.y)?,
            i64::try_from(v.z)?,
            i64::try_from(v.w)?,
        ))
    }
}
impl From<BVec4> for I64Vec4 {
    #[inline]
    fn from(v: BVec4) -> Self {
        Self::new(
            i64::from(v.x),
            i64::from(v.y),
            i64::from(v.z),
            i64::from(v.w),
        )
    }
}
#[cfg(not(feature = "scalar-math"))]
impl From<BVec4A> for I64Vec4 {
    #[inline]
    fn from(v: BVec4A) -> Self {
        let bool_array: [bool; 4] = v.into();
        Self::new(
            i64::from(bool_array[0]),
            i64::from(bool_array[1]),
            i64::from(bool_array[2]),
            i64::from(bool_array[3]),
        )
    }
}