We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87d53d7 commit 45d2c70Copy full SHA for 45d2c70
markdown/intro.md
@@ -1,2 +1,15 @@
1
# Intro
2
Hello, this is the intro.
3
+
4
+### Version Conformance
5
+A GraphBLAS library should define the macro `GRAPHBLAS_CPP_VERSION` to indicate its
6
+level of conformance with the GraphBLAS C++ API. To indicate conformance with the
7
+GraphBLAS 0.1 draft specification, a library should provide the macro `GRAPHBLAS_CPP_VERSION`
8
+with a value greater than or equal to `202207L`.
9
10
+#### Exposition Only
11
+```cpp
12
+// Define the `GRAPHBLAS_CPP_VERSION` macro to indicate
13
+// conformance to the GraphBLAS 0.1 Draft Specification.
14
+#define GRAPHBLAS_CPP_VERSION 202207L
15
+```
0 commit comments