private
(variable-list) |
Creates a private, default-constructed
version for each object in
variable-list for the
task. The original object referenced by the
variable has an indeterminate value upon entry to the construct, must not be
modified within the dynamic extent of the construct, and has an indeterminate
value upon exit from the construct.
|
captureprivate
(variable-list) |
Creates a private, copy-constructed version
for each object in
variable-list for the
task at the time the
task is queued. The original object referenced
by each variable retains its value but must not be modified within the dynamic
extent of the
task construct.
|