diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-09 19:33:34 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-09 19:33:34 +0100 |
| commit | a1230c628764261792317fc3eb555b194859d599 (patch) | |
| tree | 5b0753feb5af568fbc34eee367ba0e63f3cff5c3 | |
| parent | a31d180295dd2947c63b5ef7303accd88e4ae690 (diff) | |
[CHORE] Add requirements for GL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -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: - |
