diff options
Diffstat (limited to '9p17.cpp')
-rw-r--r-- | 9p17.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/9p17.cpp b/9p17.cpp new file mode 100644 index 0000000..76039f6 --- /dev/null +++ b/9p17.cpp @@ -0,0 +1,16 @@ + +/* + * + * 9.17 + * + * + */ + +int main () { + + // The elements contained must support the operator being used. In this case the less than (<) operator. + // The container itself must support the operator being used. (<) in this case. + // The container types must be the same. So for example you cannot use the operator between a list or a vector. + // The element type must be the same. You cannot use the operator between a std::vector<int> and a std::vector<double> + return 0; +} |