You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/elixir/lib/kernel/special_forms.ex
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1786,6 +1786,13 @@ defmodule Kernel.SpecialForms do
1786
1786
1787
1787
&local_function/1
1788
1788
1789
+
When the capture operator is given a module name, a remote/external capture
1790
+
is created. Remote captures are faster than local captures. For more
1791
+
information, refer to the ["Functions" section in the Erlang Reference Manual](https://www.erlang.org/doc/system/eff_guide_functions.html#function-calls).
1792
+
1793
+
Note that local captures dispatch to the version of the module which created
1794
+
them, while remote captures dispatch to the current version of the module.
0 commit comments