summaryrefslogtreecommitdiff
path: root/lib/stream_support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stream_support.cpp')
-rw-r--r--lib/stream_support.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/stream_support.cpp b/lib/stream_support.cpp
new file mode 100644
index 0000000..2054873
--- /dev/null
+++ b/lib/stream_support.cpp
@@ -0,0 +1,11 @@
+#include "stream_support.hpp"
+
+#include <array>
+#include <vector>
+
+static_assert(spanable<std::vector<int>>);
+// static_assert(spanable<std::vector<char>>);
+static_assert(spanable<std::array<int, 1>>);
+// static_assert(spanable<std::array<char, 1>>);
+static_assert(!spanable<std::string>);
+static_assert(!spanable<std::string_view>);