valerievloef commited on
Commit
1f37ece
1 Parent(s): 42a6225

Update DataSet_1_Finito_v1.csv

Browse files
Files changed (1) hide show
  1. DataSet_1_Finito_v1.csv +0 -1
DataSet_1_Finito_v1.csv CHANGED
@@ -49,4 +49,3 @@ ToString();Consider the method ToString() of the class List. Preconditions: The
49
  TrimExcess();Consider the method TrimExcess() from the class List. Precondition(s): The method expects a non-null List. Method: It then changes the size of the list to the actual number of elements of the List, if that number is less than a threshold value. Postcondition(s): The method expects there are no null places in the List. ;"list != null; list.TrimExcess(); foreach (var element in list) { element != null; } ";1
50
  TrueForAll(Predicate<T>);Determines whether every element in the List<T> matches the conditions defined by the specified predicate. Consider the Method TrueForAll(predicate). Precondition(s): The method expects a non-null List. The method expects a non-null predicate. Method: It then return a boolean whether every element in the List matches the conditions defined by the specified predicate. ;"list != null; predicate != null; if list.TrueForAll(predicate) { return TRUE; } else FALSE;";1
51
  List<T>(Int32);Consider the method List(capacity) of the class List. Method: Initializes a new instance of the List class that is empty and has the specified initial capacity.;"list = List(capacity);";1
52
- ;;;
 
49
  TrimExcess();Consider the method TrimExcess() from the class List. Precondition(s): The method expects a non-null List. Method: It then changes the size of the list to the actual number of elements of the List, if that number is less than a threshold value. Postcondition(s): The method expects there are no null places in the List. ;"list != null; list.TrimExcess(); foreach (var element in list) { element != null; } ";1
50
  TrueForAll(Predicate<T>);Determines whether every element in the List<T> matches the conditions defined by the specified predicate. Consider the Method TrueForAll(predicate). Precondition(s): The method expects a non-null List. The method expects a non-null predicate. Method: It then return a boolean whether every element in the List matches the conditions defined by the specified predicate. ;"list != null; predicate != null; if list.TrueForAll(predicate) { return TRUE; } else FALSE;";1
51
  List<T>(Int32);Consider the method List(capacity) of the class List. Method: Initializes a new instance of the List class that is empty and has the specified initial capacity.;"list = List(capacity);";1