backInserter overloads
Synopses
Declared in <bdlat_arrayiterators.h>
Return a BackInsertIterator (of the appropriate type) to manipulate the specified array. Specializations of this function might return a different back‐inserter type.
template<class TYPE>
bdlat_ArrayIterators::BackInsertIterator<TYPE>
backInserter(TYPE* array);
Specialization of backInserter for bsl::vector. Return `bsl::back_insert_iterator instead of `BackInsertIterator'.
template<
class TYPE,
class ALLOC>
bsl::back_insert_iterator<bsl::vector<TYPE, ALLOC>>
backInserter(bsl::vector<TYPE, ALLOC>* array);
Created with MrDocs