Vuo 2.4.4
Loading...
Searching...
No Matches
VuoList_VuoText.h
Go to the documentation of this file.
1
10#ifndef VuoList_VuoText_DEFINED
11#define VuoList_VuoText_DEFINED
12
13#ifdef __cplusplus
14extern "C"
15{
16#endif
17
29typedef const struct { void *l; } * VuoList_VuoText;
30
31#ifdef VuoText_SUPPORTS_COMPARISON
32#define VuoList_VuoText_SUPPORTS_COMPARISON
33#endif
34#ifdef VuoText_OVERRIDES_INTERPROCESS_SERIALIZATION
35#define VuoList_VuoText_OVERRIDES_INTERPROCESS_SERIALIZATION
36#endif
37
42
48VuoList_VuoText VuoListCreateWithCount_VuoText(const unsigned long count, const VuoText value);
49
55VuoList_VuoText VuoListCreateWithValueArray_VuoText(const VuoText *values, const unsigned long valueCount);
56
61
74VuoText VuoListGetValue_VuoText(const VuoList_VuoText list, const unsigned long index);
75
93
102void VuoListForeach_VuoText(const VuoList_VuoText list, bool (^function)(const VuoText value));
103
115void VuoListSetValue_VuoText(const VuoList_VuoText list, const VuoText value, const unsigned long index, bool expandListIfNeeded);
116
125void VuoListInsertValue_VuoText(const VuoList_VuoText list, const VuoText value, const unsigned long index);
126
131
136
140void VuoListExchangeValues_VuoText(VuoList_VuoText list, const unsigned long indexA, const unsigned long indexB);
141
142#ifdef VuoText_SUPPORTS_COMPARISON
146void VuoListSort_VuoText(VuoList_VuoText list);
147
154bool VuoList_VuoText_areEqual(const VuoList_VuoText a, const VuoList_VuoText b);
155
160bool VuoList_VuoText_isLessThan(const VuoList_VuoText a, const VuoList_VuoText b);
161#endif
162
168void VuoListShuffle_VuoText(VuoList_VuoText list, const double chaos);
169
174
180VuoList_VuoText VuoListSubset_VuoText(VuoList_VuoText list, const signed long startIndex, const unsigned long itemCount);
181
182#ifdef VuoText_SUPPORTS_COMPARISON
190VuoList_VuoText VuoListRemoveDuplicates_VuoText(VuoList_VuoText list);
191#endif
192
197
202
207
215void VuoListRemoveValue_VuoText(VuoList_VuoText list, const unsigned long index);
216
220unsigned long VuoListGetCount_VuoText(const VuoList_VuoText list);
221
230
234struct json_object * VuoList_VuoText_getJson(const VuoList_VuoText list);
235
236#ifdef VuoText_OVERRIDES_INTERPROCESS_SERIALIZATION
242struct json_object * VuoList_VuoText_getInterprocessJson(const VuoList_VuoText list);
243#endif
244
249
254
259
261
266
271#ifdef __cplusplus
272}
273#endif
274
275#endif