Dispatch Branch
🌐 KR
Description
- A component that splits the branches of an input DataTree into two DataTrees according to a pattern. Regardless of the format of individual paths in the input DataTree, the paths are separated by matching their sequence number with the pattern.
Input
- Tree [Generic / DataTree] : Input the DataTree to be split according to the pattern.
- Pattern [Bool / List] : Input the list of boolean values to use as the split pattern. Branches matching “True” in the pattern are split into Tree_A, while branches matching “False” are split into Tree_B.
- For example, if the pattern is { True, False }, the branches of the odd-numbered paths in the input DataTree are split into Tree_A, and the branches of the even-numbered paths are split into Tree_B.
Output
- Tree A [Generic / DataTree] : Outputs the DataTree composed of branch data matching “True” in the pattern
- Tree B [bool / List] : Outputs the DataTree composed of branch data matching “False” in the pattern.
How To Use
- Here is an example you might encounter when using the Fly-By Branch component.