surpressed all style warnings from the LSP server.
This commit is contained in:
parent
7ee2238248
commit
23c4ac299e
13 changed files with 346 additions and 371 deletions
|
|
@ -1,7 +1,3 @@
|
|||
using System.Numerics;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.Intrinsics;
|
||||
using System.Runtime.Intrinsics.X86;
|
||||
|
||||
namespace PersistentOrderedMap;
|
||||
|
||||
|
|
@ -9,10 +5,10 @@ using System;
|
|||
using System.Buffers.Binary;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
public interface IKeyStrategy<K>
|
||||
public interface IKeyStrategy<in TK>
|
||||
{
|
||||
int Compare(K x, K y);
|
||||
long GetPrefix(K key);
|
||||
int Compare(TK x, TK y);
|
||||
long GetPrefix(TK key);
|
||||
|
||||
bool UsesPrefixes => true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue