// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace FASTER.core
{
///
/// Key interface
///
///
public interface IFasterEqualityComparer
{
///
/// Get 64-bit hash code
///
///
long GetHashCode64(ref T k);
///
/// Equality comparison
///
/// Left side
/// Right side
///
bool Equals(ref T k1, ref T k2);
}
}