I have a model where flow items are assigned a unique ID, that increments. Then task executors go around and pick the flow items from racks and place them onto carts, which is a container. This picking is random, and what I need to do is sort the items on the cart (in the container) based on the label (unique ID), so that the array of items in the container is listed in ascending order of the items label value.
It seems like you can sort items in a queue based on a label value. Can you also do this for items in a container?