コード例 #1
0
ファイル: OrderedSet.cs プロジェクト: teodorov/Automata-1
        /// <summary>
        /// Returns a new set that contains the new elements and the old elements.
        /// </summary>
        public OrderedSet <T> Union(IEnumerable <T> new_elems)
        {
            var set = new OrderedSet <T>(this, count);

            set.AddRange(new_elems);
            return(set);
        }
コード例 #2
0
ファイル: OrderedSet.cs プロジェクト: teodorov/Automata-1
        /// <summary>
        /// Returns a new set that contains the new elements and the old elements.
        /// </summary>
        public OrderedSet <T> Union(params T[] new_elems)
        {
            var set = new OrderedSet <T>(this, count);

            set.AddRange(new_elems);
            return(set);
        }