```cs if (Vector128.IsHardwareAccelerated && typeof(T) == typeof(float)) { return Unsafe.BitCast

if (Vector128.IsHardwareAccelerated && typeof(T) == typeof(float))
{
    return Unsafe.BitCast<Vector3<T>, Vector3>(this).AsVector128().Equals(Unsafe.BitCast<Vector3<T>, Vector3>(other).AsVector128());
}
Was this page helpful?