diff options
| -rw-r--r-- | doc/requirements/GenericsLibrary.Iterators.md | 12 | ||||
| -rw-r--r-- | doc/requirements/GenericsLibrary.md | 4 |
2 files changed, 12 insertions, 4 deletions
diff --git a/doc/requirements/GenericsLibrary.Iterators.md b/doc/requirements/GenericsLibrary.Iterators.md new file mode 100644 index 0000000..8dd2aa1 --- /dev/null +++ b/doc/requirements/GenericsLibrary.Iterators.md @@ -0,0 +1,12 @@ +# GenericsLibrary: Iterators + +## Abstract: + +The 'Iterators' concept comes from Stepanov' STL and their papers, Nectar implements them in order to provide walkable traits to work on. + +## Example: + +```nectar + let it = trt.begin(); + it.leak().field_value; +```
\ No newline at end of file diff --git a/doc/requirements/GenericsLibrary.md b/doc/requirements/GenericsLibrary.md deleted file mode 100644 index 70dd624..0000000 --- a/doc/requirements/GenericsLibrary.md +++ /dev/null @@ -1,4 +0,0 @@ -# GenericsLibrary: The Standard Nectar framework. - -## Abstract: - |
