namespace UnityHelpers.Core.Extension { using System.Collections.Generic; public static class HashSetExtensions { public static void AddRange(this HashSet set, IEnumerable elements) { set.UnionWith(elements); } } }