ListPushArrL
- Macro
- October 8, 2025
Table of Contents
ListPushArrL
ListPushArrL
Description
Push a complete array into this list.
Note
If provided list l
does not make it’s own copy of items, the provided array arr
will be memset to 0, to keep single ownership.
Parameters
Name | Direction | Description |
---|---|---|
l | in,out | List to insert array items into. |
arr | in | Array to be inserted. |
count | in | Number (non-zero) of items in array. |
Success
Return.
Failure
Do not return.
Usage example (Cross-references)
- In
ListInt.c:171
:
values[i] = (i32)extract_u32(data, offset, size);
}
ListPushArrL(list, values, count);
}
break;