Go to the source code of this file.
|
#define | XsIntList XsIntArray |
|
#define | XSINTLIST_INITIALIZER XsIntArray_INITIALIZER |
|
#define | XsIntList_construct(thisPtr, sz, src) XsIntArray_construct(thisPtr, sz, src) |
|
#define | XsIntList_assign(thisPtr, sz, src) XsArray_assign(thisPtr, sz, src) |
|
#define | XsIntList_destruct(thisPtr) XsArray_destruct(thisPtr) |
|
#define | XsIntList_copy(thisPtr, copy) XsArray_copy(copy, thisPtr) |
|
#define | XsIntList_append(thisPtr, other) XsArray_append(thisPtr, other) |
|
#define | XsIntList_popFront(thisPtr, count) XsArray_erase(thisPtr, 0, count) |
|
#define | XsIntList_popBack(thisPtr, count) XsArray_erase(thisPtr, (XsSize)-1, count) |
|
#define | XsIntList_swap(a, b) XsArray_swap(a, b) |
|
#define | XsIntList_erase(thisPtr, index, count) XsArray_erase(thisPtr, index, count) |
|
#define | XsIntList_find(thisPtr, needle) XsArray_find(thisPtr, needle) |
|
◆ XsIntList
◆ XsIntList_append
#define XsIntList_append |
( |
|
thisPtr, |
|
|
|
other |
|
) |
| XsArray_append(thisPtr, other) |
◆ XsIntList_assign
◆ XsIntList_construct
◆ XsIntList_copy
#define XsIntList_copy |
( |
|
thisPtr, |
|
|
|
copy |
|
) |
| XsArray_copy(copy, thisPtr) |
◆ XsIntList_destruct
◆ XsIntList_erase
◆ XsIntList_find
#define XsIntList_find |
( |
|
thisPtr, |
|
|
|
needle |
|
) |
| XsArray_find(thisPtr, needle) |
◆ XSINTLIST_INITIALIZER
◆ XsIntList_popBack
◆ XsIntList_popFront
◆ XsIntList_swap