Collection Extensions (Sets and Maps) for LabVIEW by VIPM Community - Toolkit for LabVIEW Download

Version | 0.4.0.38 |
Released | Jun 28, 2023 |
Publisher | VIPM Community |
License | BSD 3-Clause |
LabVIEW Version | LabVIEW>=20.0 |
Operating System | Windows, Mac, and Linux |
Project links | Homepage Repository |
Description
A library of extensions to the LabVIEW native map and set VIs and functions. These are mostly VIMs (Malleable VIs).
A map groups key-value pairs in sorted order where all the keys are unique. The key and value can each be any data type. Maps are also known as dictionaries because the key is used to look up a value. Inserting a key-value pair into a map either adds the pair to the map or replaces the existing value of the associated key with the new value in the map, depending on whether the key already exists in the map.
A set groups unique elements of the same data type in sorted order. Inserting a new element modifies the set only if that element does not already exist in the set.
Release Notes
- Separated compiled code from all VIs (GitHub Issue #1)
- Convert Array to Map now also supports input of Cluster of two 1D arrays keys and values. This is useful for cases where associated arrays of keys and values are built in separate loops/flows. (GitHub Issue #2)