CloneSet1970


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10210.979statement_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110161
src/Iesi.Collections/DictionarySet.cs
210171
src/Iesi.Collections/Generic/DictionarySet.cs
Clone Instance
1
Line Count
10
Source Line
161
Source File
src/Iesi.Collections/DictionarySet.cs

                        foreach (object o in this )
                        {
                                //If C does not contain O, then we need to remove O from our
                                //set.  We can't do this while iterating through our set, so
                                //we put it into RemoveSet for later.
                                if ( !cSet.Contains(o))
                                        removeSet.Add(o);
                        }

                        return this.RemoveAll(removeSet);


Clone Instance
2
Line Count
10
Source Line
171
Source File
src/Iesi.Collections/Generic/DictionarySet.cs

                        foreach (T o in this )
                        {
                                //If C does not contain O, then we need to remove O from our
                                //set.  We can't do this while iterating through our set, so
                                //we put it into RemoveSet for later.
                                if ( !cSet.Contains(o))
                                        removeSet.Add(o);
                        }

                        return this.RemoveAll(removeSet);


Clone AbstractionParameter Count: 1Parameter Bindings

foreach ( [[#variable56f89a00]]o in this )
{
   //If C does not contain O, then we need to remove O from our
   //set.  We can't do this while iterating through our set, so
   //we put it into RemoveSet for later.
   if ( !cSet.Contains(o))
      removeSet.Add(o);
}
return this.RemoveAll(removeSet);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#56f89a00]]
object 
12[[#56f89a00]]
T