Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.21 KB

File metadata and controls

54 lines (44 loc) · 1.21 KB
title back_inserter Function | Microsoft Docs
ms.custom
ms.date 12/30/2016
ms.technology cpp-windows
ms.reviewer
ms.suite
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
collection/Windows::Foundation::Collections::back_inserter
dev_langs
C++
helpviewer_keywords
back_inserter Function
ms.assetid 91476338-5548-44b7-bc7e-2150f4fbe31a
caps.latest.revision 4
author ghogen
ms.author ghogen
manager ghogen

back_inserter Function

Returns an iterator that is used to insert elements at the end of the specified collection.

Syntax

  
template <typename T>
Platform::BackInsertIterator<T>   
    back_inserter(IVector<T>^ v);  
  
template<typename T>  
Platform::BackInsertIterator<T>   
   back_inserter(IObservableVector<T>^ v);  

Parameters

T
A template type parameter.

v
An interface pointer that provides access to the underlying collection.

Return Value

An iterator.

Requirements

Header: collection.h

Namespace: Windows::Foundation::Collections

See Also

Windows::Foundation::Collections Namespace