Replies: 1 comment 2 replies
-
This special exception would require careful work to implement, and I do not think it makes sense to branch over an empty object anyway. If the object is empty, there is no need for branching at all. You can remove it from |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sometimes, the targets to be dynamically branching over can be expected to be
NULL
(i.e., empty). Currently, an error is thrown upon this, which halts the whole workflow. I am looking forward to a warning/message but not an error. For example, branching over empty target just returns an empty target (say,NULL
) with an warning/message.Beta Was this translation helpful? Give feedback.
All reactions