From 12f648998464e7820e2be633e4d999c285047bce Mon Sep 17 00:00:00 2001 From: Oskar Date: Wed, 9 Oct 2024 16:55:14 +0200 Subject: more --- 9p17.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 9p17.cpp (limited to '9p17.cpp') 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 and a std::vector + return 0; +} -- cgit v1.2.3