i is for I will scream at these changes

This commit is contained in:
Oliver Booth 2023-03-23 15:11:44 +00:00
parent ea26b5a7e1
commit e00a673a04
No known key found for this signature in database
GPG Key ID: 20BEB9DC87961025
1 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
using System.Diagnostics.Contracts; using System.Diagnostics.Contracts;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
@ -201,9 +201,9 @@ public static class SpanExtensions
default: default:
byte result = 0; byte result = 0;
for (var i = 0; i < source.Length; i++) for (var index = 0; index < source.Length; index++)
{ {
result |= (byte)(source[i] ? 1 << i : 0); result |= (byte)(source[index] ? 1 << index : 0);
} }
return result; return result;
@ -270,9 +270,9 @@ public static class SpanExtensions
default: default:
short result = 0; short result = 0;
for (var i = 0; i < source.Length; i++) for (var index = 0; index < source.Length; index++)
{ {
result |= (short)(source[i] ? 1 << i : 0); result |= (short)(source[index] ? 1 << index : 0);
} }
return result; return result;
@ -428,9 +428,9 @@ public static class SpanExtensions
default: default:
long result = 0; long result = 0;
for (var i = 0; i < source.Length; i++) for (var index = 0; index < source.Length; index++)
{ {
result |= source[i] ? 1U << i : 0; result |= source[index] ? 1U << index : 0;
} }
return result; return result;