VecPushFrontArrFastR

Table of Contents

VecPushFrontArrFastR

Description

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

Note

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

Parameters

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

Success

v

Failure

Does not return on failure

Usage example (Cross-references)

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

Share :