using System; using System.Collections.Generic; using Vision.Core.Collections; namespace Vision.Core.Extensions { public static class IEnumerableExtensions { public static FastList ToFastList(this IEnumerable Source) { if (Source == null) throw new ArgumentNullException(nameof(Source)); return new FastList(Source); } } }