Fixed minor space changes and one syntax error that causes conflict between checked in Vector.cs file and the freshly auto-generated Vector.cs file.
/// Returns a vector containing all zeroes.
/// </summary>
public static Vector<T> Zero
- {
+ {
[Intrinsic]
get
{
return s_zero;
- }
+ }
}
private static readonly Vector<T> s_zero = new Vector<T>();
{
[Intrinsic]
get
- {
+ {
return s_one;
}
}
[MethodImplAttribute(MethodImplOptions.AggressiveInlining)]
public static Vector<T> operator ~(Vector<T> value)
{
- return allOnes ^ value;
+ return s_allOnes ^ value;
}
#endregion Bitwise Operators