]> Nishi Git Mirror - gwion.git/commitdiff
:art: Add partial application
authorJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 07:13:09 +0000 (09:13 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 07:13:09 +0000 (09:13 +0200)
docs/Reference/Functions/README.mdr

index 0c8351e53e404db41026883de64ee4afbc6e697e..6c0340282cb06e16a7dca55036e8e77407f20972 100644 (file)
@@ -40,3 +40,20 @@ fun void myfunc(int i, int j) {
 #! prints '1 2'
 2 => myfunc(1, _);
 ```
+
+## Partial Application
+
+According to wikipeda:
+*In computer science, partial application (or partial function application) refers to the process of fixing a number of arguments to a function, producing another function of smaller arity.*
+
+In gwion, you can use the `curry` function to achieve that
+
+```gwion,editable
+fun int test(int i, int j) {
+  return i + j;
+}
+
+curry(test, _, 2) @=> const auto mytest;
+
+<<< 40 => mytest >>>;
+```