File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 436
436
The behavior of a program is undefined if
437
437
it invokes a vectorization-unsafe standard library function
438
438
from user code
439
- called from a \tcode {execution::unsequenced_policy} algorithm.
439
+ called from an \tcode {execution::unsequenced_policy} algorithm.
440
440
\begin {note }
441
441
Because \tcode {execution::unsequenced_policy} allows
442
442
the execution of element access functions
523
523
The behavior of a program is undefined if
524
524
it invokes a vectorization-unsafe standard library function
525
525
from user code
526
- called from a \tcode {execution::parallel_unsequenced_policy} algorithm.
526
+ called from an \tcode {execution::parallel_unsequenced_policy} algorithm.
527
527
\begin {note }
528
528
Because \tcode {execution::parallel_unsequenced_policy} allows
529
529
the execution of element access functions
Original file line number Diff line number Diff line change 2504
2504
\pnum
2505
2505
Class template \tcode {projected} is used to constrain algorithms
2506
2506
that accept callable objects and projections\iref {defns.projection }.
2507
- It combines a \libconcept {indirectly_readable} type \tcode {I} and
2507
+ It combines an \libconcept {indirectly_readable} type \tcode {I} and
2508
2508
a callable object type \tcode {Proj} into a new \libconcept {indirectly_readable} type
2509
2509
whose \tcode {reference} type is the result of applying
2510
2510
\tcode {Proj} to the \tcode {iter_reference_t} of \tcode {I}.
2557
2557
2558
2558
\pnum
2559
2559
The \libconcept {indirectly_movable} concept specifies the relationship between
2560
- a \libconcept {indirectly_readable} type and a \libconcept {indirectly_writable} type
2560
+ an \libconcept {indirectly_readable} type and an \libconcept {indirectly_writable} type
2561
2561
between which values may be moved.
2562
2562
2563
2563
\begin {codeblock }
2599
2599
2600
2600
\pnum
2601
2601
The \libconcept {indirectly_copyable} concept specifies the relationship between
2602
- a \libconcept {indirectly_readable} type and a \libconcept {indirectly_writable} type
2602
+ an \libconcept {indirectly_readable} type and an \libconcept {indirectly_writable} type
2603
2603
between which values may be copied.
2604
2604
2605
2605
\begin {codeblock }
Original file line number Diff line number Diff line change 4465
4465
\tcode{as_rvalue_view} presents a view of an underlying sequence
4466
4466
with the same behavior as the underlying sequence
4467
4467
except that its elements are rvalues.
4468
- Some generic algorithms can be called with a \tcode{as_rvalue_view}
4468
+ Some generic algorithms can be called with an \tcode{as_rvalue_view}
4469
4469
to replace copying with moving.
4470
4470
4471
4471
\pnum
You can’t perform that action at this time.
0 commit comments