Skip to content

Commit f65652f

Browse files
authored
Merge pull request #1064 from jonas-schievink/clarify-capture-modes
Clarify closure capture modes slightly
2 parents ab60513 + 9f10621 commit f65652f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/types/closure.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ f(Closure{s: s, t: &t});
4949

5050
The compiler prefers to capture a closed-over variable by immutable borrow,
5151
followed by unique immutable borrow (see below), by mutable borrow, and finally
52-
by move. It will pick the first choice of these that allows the closure to
53-
compile. The choice is made only with regards to the contents of the closure
54-
expression; the compiler does not take into account surrounding code, such as
55-
the lifetimes of involved variables.
52+
by move. It will pick the first choice of these that is compatible with how the
53+
captured variable is used inside the closure body. The compiler does not take
54+
surrounding code into account, such as the lifetimes of involved variables, or
55+
of the closure itself.
5656

5757
If the `move` keyword is used, then all captures are by move or, for `Copy`
5858
types, by copy, regardless of whether a borrow would work. The `move` keyword is

0 commit comments

Comments
 (0)