Vuo 2.4.4
Loading...
Searching...
No Matches
VuoList_VuoImage.h
Go to the documentation of this file.
1
10#ifndef VuoList_VuoImage_DEFINED
11#define VuoList_VuoImage_DEFINED
12
13#ifdef __cplusplus
14extern "C"
15{
16#endif
17
29typedef const struct { void *l; } * VuoList_VuoImage;
30
31#ifdef VuoImage_SUPPORTS_COMPARISON
32#define VuoList_VuoImage_SUPPORTS_COMPARISON
33#endif
34#ifdef VuoImage_OVERRIDES_INTERPROCESS_SERIALIZATION
35#define VuoList_VuoImage_OVERRIDES_INTERPROCESS_SERIALIZATION
36#endif
37
42
48VuoList_VuoImage VuoListCreateWithCount_VuoImage(const unsigned long count, const VuoImage value);
49
55VuoList_VuoImage VuoListCreateWithValueArray_VuoImage(const VuoImage *values, const unsigned long valueCount);
56
61
74VuoImage VuoListGetValue_VuoImage(const VuoList_VuoImage list, const unsigned long index);
75
93
102void VuoListForeach_VuoImage(const VuoList_VuoImage list, bool (^function)(const VuoImage value));
103
115void VuoListSetValue_VuoImage(const VuoList_VuoImage list, const VuoImage value, const unsigned long index, bool expandListIfNeeded);
116
125void VuoListInsertValue_VuoImage(const VuoList_VuoImage list, const VuoImage value, const unsigned long index);
126
131
136
140void VuoListExchangeValues_VuoImage(VuoList_VuoImage list, const unsigned long indexA, const unsigned long indexB);
141
142#ifdef VuoImage_SUPPORTS_COMPARISON
146void VuoListSort_VuoImage(VuoList_VuoImage list);
147
154bool VuoList_VuoImage_areEqual(const VuoList_VuoImage a, const VuoList_VuoImage b);
155
160bool VuoList_VuoImage_isLessThan(const VuoList_VuoImage a, const VuoList_VuoImage b);
161#endif
162
168void VuoListShuffle_VuoImage(VuoList_VuoImage list, const double chaos);
169
174
180VuoList_VuoImage VuoListSubset_VuoImage(VuoList_VuoImage list, const signed long startIndex, const unsigned long itemCount);
181
182#ifdef VuoImage_SUPPORTS_COMPARISON
190VuoList_VuoImage VuoListRemoveDuplicates_VuoImage(VuoList_VuoImage list);
191#endif
192
197
202
207
215void VuoListRemoveValue_VuoImage(VuoList_VuoImage list, const unsigned long index);
216
221
230
234struct json_object * VuoList_VuoImage_getJson(const VuoList_VuoImage list);
235
236#ifdef VuoImage_OVERRIDES_INTERPROCESS_SERIALIZATION
242struct json_object * VuoList_VuoImage_getInterprocessJson(const VuoList_VuoImage list);
243#endif
244
249
254
259
261
266
271#ifdef __cplusplus
272}
273#endif
274
275#endif