Classes and class hierarchies
C.104
Give a container a default constructor that sets it to empty
Reason
To make it Regular.
Example
vector<Sorted_sequence<string>> vs(100); // 100 Sorted_sequences each with the value ""
Enforcement
???
To make it Regular.
vector<Sorted_sequence<string>> vs(100); // 100 Sorted_sequences each with the value ""
???