Skip to content
VecPushFrontArrFastR

VecPushFrontArrFastR

VecPushFrontArrFastR

Description

Push a complete array into this vector front without preserving the order of elements in vector, with R-value semantics.

Unlike VecPushFrontArrFastL, this does NOT zero out the source array after insertion.

Parameters

Name Direction Description
v in,out Vector to insert array items into.
arr in Array to be inserted.
count in Number (non-zero) of items in array.

Success

v

Failure

Does not return on failure

Usage example (Cross-references)

Usage examples (Cross-references)
                        values[i] = (i32)extract_u32(data, offset, size);
                    }
                    VecPushFrontArrFastR(vec, values, count);
                }
                break;
Last updated on