-
I have a collections of arrays of different types, and I want to assure the content does not contain any None values. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's best to avoid checking for a |
Beta Was this translation helpful? Give feedback.
ARRAY.type
is a data structure withcontent
(single child, another Type) andcontents
(multiple children, a list of Types) that can be navigated.It's best to avoid checking for a
"?"
in the string because in more complex cases, the function nameoption[...]
is used.