cpp/algorithm/partition copy: differenze tra le versioni
Da cppreference.com.
(Translated from the English version using Google Translate) |
P12 (Discussione | contributi) m (una revisione importata: Translate from the English version) |
Versione delle 16:28, 29 ott 2012
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Defined in header <algorithm>
|
||
template< class InputIt, class OutputIt1, class OutputIt2, class UnaryPredicate > |
(dal C++11) | |
Copia gli elementi che soddisfano la
p
predicato dal [first, last)
gamma all'inizio gamma a d_first_true
, e copia gli elementi che non soddisfano p
all'inizio gamma a d_first_false
.Original:
Copies the elements that satisfy the predicate
p
from the range [first, last)
to the range beginning at d_first_true
, and copies the elements that do not satisfy p
to the range beginning at d_first_false
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |