Go to the source code of this file.
|
#define | XsMessageList XsMessageArray |
|
#define | XSMESSAGELIST_INITIALIZER XSMESSAGEARRAY_INITIALIZER |
|
#define | XsMessageList_assign(thisPtr, size, src) XsArray_assign(thisPtr, size, src) |
|
#define | XsMessageList_destruct(thisPtr) XsArray_destruct(thisPtr) |
|
#define | XsMessageList_copy(thisPtr, copy) XsArray_copy(copy, thisPtr) |
|
#define | XsMessageList_append(thisPtr, other) XsArray_append(thisPtr, other) |
|
#define | XsMessageList_popFront(thisPtr, count) XsArray_erase(thisPtr, 0, count) |
|
#define | XsMessageList_popBack(thisPtr, count) XsArray_erase(thisPtr, (XsSize) -1, count) |
|
#define | XsMessageList_swap(a, b) XsArray_swap(a, b) |
|
#define | XsMessageList_erase(thisPtr, index, count) XsArray_erase(thisPtr, index, count) |
|
◆ XsMessageList
◆ XsMessageList_append
#define XsMessageList_append |
( |
|
thisPtr, |
|
|
|
other |
|
) |
| XsArray_append(thisPtr, other) |
◆ XsMessageList_assign
◆ XsMessageList_copy
#define XsMessageList_copy |
( |
|
thisPtr, |
|
|
|
copy |
|
) |
| XsArray_copy(copy, thisPtr) |
◆ XsMessageList_destruct
◆ XsMessageList_erase
◆ XSMESSAGELIST_INITIALIZER
◆ XsMessageList_popBack
◆ XsMessageList_popFront
◆ XsMessageList_swap