Pipeline operators
| Operator | Name | Description |
|---|---|---|
|> |
Pipe | Sequential: output of left becomes input of right |
|?> |
Conditional Pipe | Skip right if condition is false |
|*> |
Parallel Pipe | Fan-out to multiple, merge results |
|~> |
Loop Pipe | Repeat until condition or max iterations |
scaicore
1 2 3 4 5 6 7 8 9 10 11 | |