blob: f18ae06a508792ddce0c0f3f048b5c3484a8564d [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#pragma once
namespace JsUtil
{
template <typename T>
class NoCaseComparer;
template <>
class NoCaseComparer<JsUtil::CharacterBuffer<WCHAR>>
{
public:
static bool Equals(JsUtil::CharacterBuffer<WCHAR> const& x, JsUtil::CharacterBuffer<WCHAR> const& y);
static uint GetHashCode(JsUtil::CharacterBuffer<WCHAR> const& i);
private:
static int Compare(JsUtil::CharacterBuffer<WCHAR> const& x, JsUtil::CharacterBuffer<WCHAR> const& y);
};
}