Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 1.27 KB

File metadata and controls

56 lines (50 loc) · 1.27 KB
title remove (STL/CLR) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic reference
f1_keywords
cliext::remove
dev_langs
C++
helpviewer_keywords
remove function [STL/CLR]
ms.assetid 85a11883-3e25-49aa-b4a0-b2cffd6dc110
caps.latest.revision 4
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

remove (STL/CLR)

Eliminates a specified value from a given range without disturbing the order of the remaining elements and returning the end of a new range free of the specified value.

Syntax

template<class _FwdIt, class _Ty> inline  
    _FwdIt remove(_FwdIt _First, _FwdIt _Last, const _Ty% _Val);  

Remarks

This function behaves the same as the C++ Standard Library function remove. For more information, see remove.

Requirements

Header: <cliext/algorithm>

Namespace: cliext

See Also

algorithm (STL/CLR)