Espacios de nombres
Variantes
Acciones

Conceptos C++: BidirectionalIterator

De cppreference.com
< cpp‎ | concept
 
 
C + + conceptos
Básica
Original:
Basic
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Biblioteca-Wide
Original:
Library-Wide
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Container
Original:
Container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Elementos contenedores
Original:
Container Elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iterator
Original:
Iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
BidirectionalIterator
Números aleatorios
Original:
Random Numbers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Concurrencia
Original:
Concurrency
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Otros
Original:
Other
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Un BidirectionalIterator es un ForwardIterator que se puede mover en ambas direcciones (es decir, incrementa y decrementa) .
Original:
A BidirectionalIterator is a ForwardIterator that can be moved in both directions (i.e. incremented and decremented).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Requisitos

  • ForwardIterator
  • operator-- con condiciones equivalentes a las operator++
    Original:
    operator-- with equivalent conditions as operator++
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Un mutable BidirectionalIterator es un BidirectionalIterator que además cumple con los requisitos OutputIterator .
Original:
A mutable BidirectionalIterator is a BidirectionalIterator that additionally satisfies the OutputIterator requirements.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.