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: doc/stdlib/base.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -4513,11 +4513,11 @@ Parallel Computing
4513
4513
4514
4514
Perform ``fetch(remotecall(...))`` in one message.
4515
4515
4516
-
.. function:: put(RemoteRef, value)
4516
+
.. function:: put!(RemoteRef, value)
4517
4517
4518
-
Store a value to a remote reference. Implements "shared queue of length 1" semantics: if a value is already present, blocks until the value is removed with ``take``.
4518
+
Store a value to a remote reference. Implements "shared queue of length 1" semantics: if a value is already present, blocks until the value is removed with ``take``. Returns its first argument.
4519
4519
4520
-
.. function:: take(RemoteRef)
4520
+
.. function:: take!(RemoteRef)
4521
4521
4522
4522
Fetch the value of a remote reference, removing it so that the reference is empty again.
0 commit comments