| Updated: October 28, 2024 |
Union of all possible multimap value types
#include <pips/multimap.h>
typedef union pips_multimap_value {
void* blob;
bool boolean;
char* string;
char json;
double number;
} pips_multimap_value_t;
This data type is a union of all supported value types in a multimap. An instance of this union is contained in each multimap item.