using System; namespace DotRecast.Core.Collections { public static class RcImmutableArray { public static RcImmutableArray Create() { return RcImmutableArray.Empty; } public static RcImmutableArray Create(T item1) { T[] array = new[] { item1 }; return new RcImmutableArray(array); } public static RcImmutableArray Create(T item1, T item2) { T[] array = new[] { item1, item2 }; return new RcImmutableArray(array); } public static RcImmutableArray Create(T item1, T item2, T item3) { T[] array = new[] { item1, item2, item3 }; return new RcImmutableArray(array); } public static RcImmutableArray Create(T item1, T item2, T item3, T item4) { T[] array = new[] { item1, item2, item3, item4 }; return new RcImmutableArray(array); } public static RcImmutableArray Create(params T[] items) { if (items == null || items.Length == 0) { return RcImmutableArray.Empty; } var tmp = new T[items.Length]; RcArrays.Copy(items, tmp, items.Length); return new RcImmutableArray(tmp); } } }