We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc06e48 commit 6cca8c1Copy full SHA for 6cca8c1
README.md
@@ -90,5 +90,8 @@ Thanks for asking. The operator `+=` is overloaded to accept a vector.
90
``` C++
91
delegate += { foo, bar };
92
```
93
+At difference of C#, delegates can be **copied by value**.
94
+``` C++
95
+Delegate<int> delegate(copyMePls); // This is possible.
96
+```
97
You can also reset or clear the delegate with `delegate.Clear()`
-
0 commit comments