User | Kudos |
---|---|
13 | |
8 | |
3 | |
3 | |
3 |
It is common, in writing reusable code, to handle arbitrary clusters in variants. To access the elements of the cluster, one wants to convert the cluster into an array of variants containing the individual items. After access, one needs to convert the array of variants back into the original cluster.
There are several examples of packages that use this on NI.com and in the LAVAg.org Code Repository. They mostly use functions for working with Variant Clusters from OpenG; however, these can be quite slow. Recent LabVIEW versions have had the ability to do much of the functions quicker, however, there is a very imortant missing native ability: to convert an Array of Variants into a Variant Cluster.
The other direction, Cluster to Array of Variants, works like this:
But trying to reverse the process breaks:
So my idea is make the second image work; make an Array of Variants interchangable with a Variant Cluster in the "Variant to Data" LabVIEW primative. The interchangability should apply to contained subclusters/arrays also. The matching of array to cluster elements can be by cluster order rather than element name.
This would greatly aid the performance of reuasable packages that operate on arbitrary clusters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.