diff options
author | Oskar <[email protected]> | 2024-10-09 16:55:14 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-10-09 16:55:14 +0200 |
commit | 12f648998464e7820e2be633e4d999c285047bce (patch) | |
tree | e596da0ae5017c139da37a88ffb4f9b595a7e03b /9p17.cpp | |
parent | e06a1fdebe095ad46b0607297f78077fccb11db1 (diff) |
more
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; +} |