// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
using System.Collections.Generic;
namespace UnrealBuildTool
{
///
/// Extension methods for hash sets
///
public static class HashSetExtensions
{
///
/// Convert a sequence to a hashset
///
/// Type of elements in the sequence
/// Sequence to convert
/// HashSet constructed from the sequence
public static HashSet ToHashSet(this IEnumerable Sequence)
{
return new HashSet(Sequence);
}
}
}