ListPushArrL

Table of Contents

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

NameDirectionDescription
lin,outList to insert array items into.
arrinArray to be inserted.
countinNumber (non-zero) of items in array.

Success

Return.

Failure

Do not return.

Usage example (Cross-references)

    values[i] = (i32)extract_u32(data, offset, size);
    }
    ListPushArrL(list, values, count);
    }
    break;

Share :