Vuo 2.4.2
Loading...
Searching...
No Matches
VuoList_VuoSpeechVoice.h
Go to the documentation of this file.
1
10#pragma once
11
12#ifdef __cplusplus
13extern "C"
14{
15#endif
16
25// This header is generated by vuo/type/list/generateVariants.sh.
26
27#if defined(DOXYGEN) || !defined(VuoList_VuoSpeechVoice_TYPE_DEFINED)
29
32typedef const struct VuoList_VuoSpeechVoice_struct { void *l; } * VuoList_VuoSpeechVoice;
34#endif
35
40
47
55VuoList_VuoSpeechVoice VuoListCreateWithValueArray_VuoSpeechVoice(const VuoSpeechVoice *values, const unsigned long valueCount);
56
61
62#ifndef VUO_LIST_INDEX_TO_C_ARRAY_INDEX
63#define VUO_LIST_INDEX_TO_C_ARRAY_INDEX
69static inline unsigned long VuoListIndexToCArrayIndex(long index, unsigned long listCount) __attribute__((const));
70static inline unsigned long VuoListIndexToCArrayIndex(long index, unsigned long listCount)
71{
72 if (index <= 0)
73 return 0;
74
75 if (index > listCount)
76 return listCount - 1;
77
78 return index - 1;
79}
80#endif
81
90VuoSpeechVoice VuoListGetValue_VuoSpeechVoice(const VuoList_VuoSpeechVoice list, const unsigned long index);
91
109
118void VuoListForeach_VuoSpeechVoice(const VuoList_VuoSpeechVoice list, bool (^function)(const VuoSpeechVoice value));
119
130void VuoListSetValue_VuoSpeechVoice(const VuoList_VuoSpeechVoice list, const VuoSpeechVoice value, const unsigned long index, bool expandListIfNeeded);
131
138void VuoListInsertValue_VuoSpeechVoice(const VuoList_VuoSpeechVoice list, const VuoSpeechVoice value, const unsigned long index);
139
144
149
153void VuoListExchangeValues_VuoSpeechVoice(VuoList_VuoSpeechVoice list, const unsigned long indexA, const unsigned long indexB);
154
155#ifdef VuoSpeechVoice_SUPPORTS_COMPARISON
159void VuoListSort_VuoSpeechVoice(VuoList_VuoSpeechVoice list);
160
166bool VuoList_VuoSpeechVoice_areEqual(const VuoList_VuoSpeechVoice a, const VuoList_VuoSpeechVoice b);
167
171bool VuoList_VuoSpeechVoice_isLessThan(const VuoList_VuoSpeechVoice a, const VuoList_VuoSpeechVoice b);
172#endif
173
179void VuoListShuffle_VuoSpeechVoice(VuoList_VuoSpeechVoice list, const double chaos);
180
185
191VuoList_VuoSpeechVoice VuoListSubset_VuoSpeechVoice(VuoList_VuoSpeechVoice list, const signed long startIndex, const unsigned long itemCount);
192
193#ifdef VuoSpeechVoice_SUPPORTS_COMPARISON
201VuoList_VuoSpeechVoice VuoListRemoveDuplicates_VuoSpeechVoice(VuoList_VuoSpeechVoice list);
202#endif
203
208
213
218
224void VuoListRemoveValue_VuoSpeechVoice(VuoList_VuoSpeechVoice list, const unsigned long index);
225
230
239
244
245#ifdef VuoSpeechVoice_REQUIRES_INTERPROCESS_JSON
251struct json_object * VuoList_VuoSpeechVoice_getInterprocessJson(const VuoList_VuoSpeechVoice value);
252#endif
253
258
263
268
270
275
280#ifdef __cplusplus
281}
282#endif