mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-23 00:58:48 +00:00
i is for I will scream at these changes
This commit is contained in:
parent
ea26b5a7e1
commit
e00a673a04
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user