Traversal
Traversal Context
Context | Semantics |
---|---|
parallel |
All array elements are scheduled for traversal in parallel. |
schedule |
All array elements are scheduled for traversal independently. |
select |
One array element is randomly selected and traversed. |
sequence |
All array elements are scheduled for traversal in sequence from 0 to N-1 . |
parallel
WIP
schedule
Both actions (i.e., sub with "Hello" and "World") in schedule
block will be traversed in random order.
There have two possible results:
select
Only one action in select
block will be chosen and traversed.
There have two possible results:
sequence
WIP
Last update:
2023-10-24
Created: 2023-10-16
Created: 2023-10-16