summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-14 14:26:01 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-14 14:26:01 +0100
commite199681a53aba5e7121e522f2422ae3bdea0a3fd (patch)
tree6797476f2a58b82d92d28773996b168a03d67786 /doc
parenta0cddce77cbb01479aa115ee63d76b30117e954f (diff)
[CHORE] Codebase chore and tweaks.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/requirements/GenericsLibrary.FreeFunctions.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/requirements/GenericsLibrary.FreeFunctions.md b/doc/requirements/GenericsLibrary.FreeFunctions.md
new file mode 100644
index 0000000..60e8bc5
--- /dev/null
+++ b/doc/requirements/GenericsLibrary.FreeFunctions.md
@@ -0,0 +1,16 @@
+# GenericsLibrary: Free Functions
+
+## Abstract:
+
+The 'Free functions' concept comes from Stepanov' STL and their papers, Nectar implements them in order to provide algorithms to work on.
+
+## Example:
+
+```nectar
+ let it = begin(trt);
+ it.leak().field_value;
+```
+
+```nectar
+ printf("%i:2", size(it));
+``` \ No newline at end of file