1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58:00 +02:00

Expanded BinarySearch api, got rid of IComparable due to iOpComparable

This commit is contained in:
Brian Fiete 2020-02-18 08:43:29 -08:00
parent b9debfe3bf
commit 90e4cf8825
11 changed files with 145 additions and 110 deletions

View file

@ -16,7 +16,7 @@ namespace System
public this(T[] array)
{
mPtr = &array.getRef(0);
mPtr = &array.[Friend]GetRef(0);
mLength = array.[Friend]mLength;
}
@ -295,7 +295,7 @@ namespace System
public this(T[] array)
{
mPtr = &array.getRef(0);
mPtr = &array.[Friend]GetRef(0);
#if BF_OPTSPAN_LENGTH
mLength = array.[Friend]mLength;
#endif