Vuo 2.4.4
Loading...
Searching...
No Matches
VuoList_VuoRssItem.h
Go to the documentation of this file.
1
10#ifndef VuoList_VuoRssItem_DEFINED
11#define VuoList_VuoRssItem_DEFINED
12
13#ifdef __cplusplus
14extern "C"
15{
16#endif
17
29typedef const struct { void *l; } * VuoList_VuoRssItem;
30
31#ifdef VuoRssItem_SUPPORTS_COMPARISON
32#define VuoList_VuoRssItem_SUPPORTS_COMPARISON
33#endif
34#ifdef VuoRssItem_OVERRIDES_INTERPROCESS_SERIALIZATION
35#define VuoList_VuoRssItem_OVERRIDES_INTERPROCESS_SERIALIZATION
36#endif
37
42
48VuoList_VuoRssItem VuoListCreateWithCount_VuoRssItem(const unsigned long count, const VuoRssItem value);
49
55VuoList_VuoRssItem VuoListCreateWithValueArray_VuoRssItem(const VuoRssItem *values, const unsigned long valueCount);
56
61
74VuoRssItem VuoListGetValue_VuoRssItem(const VuoList_VuoRssItem list, const unsigned long index);
75
93
102void VuoListForeach_VuoRssItem(const VuoList_VuoRssItem list, bool (^function)(const VuoRssItem value));
103
115void VuoListSetValue_VuoRssItem(const VuoList_VuoRssItem list, const VuoRssItem value, const unsigned long index, bool expandListIfNeeded);
116
125void VuoListInsertValue_VuoRssItem(const VuoList_VuoRssItem list, const VuoRssItem value, const unsigned long index);
126
131
136
140void VuoListExchangeValues_VuoRssItem(VuoList_VuoRssItem list, const unsigned long indexA, const unsigned long indexB);
141
142#ifdef VuoRssItem_SUPPORTS_COMPARISON
146void VuoListSort_VuoRssItem(VuoList_VuoRssItem list);
147
154bool VuoList_VuoRssItem_areEqual(const VuoList_VuoRssItem a, const VuoList_VuoRssItem b);
155
160bool VuoList_VuoRssItem_isLessThan(const VuoList_VuoRssItem a, const VuoList_VuoRssItem b);
161#endif
162
168void VuoListShuffle_VuoRssItem(VuoList_VuoRssItem list, const double chaos);
169
174
180VuoList_VuoRssItem VuoListSubset_VuoRssItem(VuoList_VuoRssItem list, const signed long startIndex, const unsigned long itemCount);
181
182#ifdef VuoRssItem_SUPPORTS_COMPARISON
190VuoList_VuoRssItem VuoListRemoveDuplicates_VuoRssItem(VuoList_VuoRssItem list);
191#endif
192
197
202
207
215void VuoListRemoveValue_VuoRssItem(VuoList_VuoRssItem list, const unsigned long index);
216
221
230
234struct json_object * VuoList_VuoRssItem_getJson(const VuoList_VuoRssItem list);
235
236#ifdef VuoRssItem_OVERRIDES_INTERPROCESS_SERIALIZATION
242struct json_object * VuoList_VuoRssItem_getInterprocessJson(const VuoList_VuoRssItem list);
243#endif
244
249
254
259
261
266
271#ifdef __cplusplus
272}
273#endif
274
275#endif