Skip to content
VecPushFrontArrFastL

VecPushFrontArrFastL

VecPushFrontArrFastL

Description

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

Ownership trasfer takes place if vector is not creating it’s own copy of items.

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)
    /// FAILURE : Does not return on failure
    ///
    #define VecPushFrontArrFast(v, arr, count) VecPushFrontArrFastL((v), (arr), (count))
    
    ///
Last updated on