remove unused function that had a bug anyway

master
Evan Hemsley 2019-12-29 00:56:29 -08:00
parent 718f52dc81
commit 8e5d9060e3
1 changed files with 0 additions and 6 deletions

View File

@ -34,12 +34,6 @@ namespace MoonTools.FastCollections
for (; count != 0; count--) if (*p++ != *q++) { return false; }
return true;
}
public static bool NotEqual(uint* p, uint* q, int count)
{
for (; count != 0; count--) if (*p++ == *q++) { return false; }
return true;
}
}
public unsafe struct BitSet512 : IEquatable<BitSet512>