Wait a minute.
In my project there are 4 arrays so far (and planning to add more). I have created each one by double-clicking on the layout, so actually each one is actually a different class, right ? It suited me fine because each one has a different size and very different treatments.
But I want to be able to count the occurences of a particular element in any type of array, because that's useful for any array. But the 'pick by UID' condition will only iterate over a particular sub-class of array, right ?
Same thing for 'pick by evaluate' or 'pick by comparison', they both ask for a user-defined sub-class of array. If there is a way to simply pick 'Array', that would do the trick for me.
But if there is not, then I see only two choices :
- make my arrays into instances of a single array sub-class, which means having to make an additional test each time I select an array (and additional risk of error and cost of maintenance)
- make a count function for each sub-class, which does not make it totally useless, but not far from...
Did I miss something ? Is there a better way ?