Exemplo n.º 1
0
        // Operations (type-safe ICloneable)

        /// <summary>
        ///
        /// </summary>
        /// <returns></returns>
        public WordCollection Clone()
        {
            WordCollection tc = new WordCollection();

            tc.AddRange(this);
            tc.Capacity  = this.m_array.Length;
            tc.m_version = this.m_version;
            return(tc);
        }
Exemplo n.º 2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="collection"></param>
        public void AddRange(WordCollection collection)
        {
            // for (int i=0; i < collection.Count; ++i) Add(collection[i]);

            ++m_version;

            Capacity += collection.Count;
            Array.Copy(collection.m_array, 0, this.m_array, m_count,
                       collection.m_count);
            m_count += collection.Count;
        }
Exemplo n.º 3
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="collection"></param>
 public WordCollection(WordCollection collection)
 {
     AddRange(collection);
 }
Exemplo n.º 4
0
 // Construction
 public Enumerator(WordCollection tc)
 {
     m_collection = tc;
     m_index = - 1;
     m_version = tc.m_version;
 }
Exemplo n.º 5
0
 // Operations (type-safe ICloneable)
 /// <summary>
 /// 
 /// </summary>
 /// <returns></returns>
 public WordCollection Clone()
 {
     WordCollection tc = new WordCollection();
     tc.AddRange(this);
     tc.Capacity = this.m_array.Length;
     tc.m_version = this.m_version;
     return tc;
 }
Exemplo n.º 6
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="collection"></param>
        public void AddRange(WordCollection collection)
        {
            // for (int i=0; i < collection.Count; ++i) Add(collection[i]);

            ++m_version;

            Capacity += collection.Count;
            Array.Copy(collection.m_array, 0, this.m_array, m_count,
                       collection.m_count);
            m_count += collection.Count;
        }
Exemplo n.º 7
0
            // Construction

            public Enumerator(WordCollection tc)
            {
                m_collection = tc;
                m_index      = -1;
                m_version    = tc.m_version;
            }
Exemplo n.º 8
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="collection"></param>
 public WordCollection(WordCollection collection)
 {
     AddRange(collection);
 }