ReverseRandomAccessIterator<TValue>.less_than Método

Definição

Determina se o iterador atual está apontando para um elemento no contêiner que está antes do elemento para o qual um iterador determinado aponta.Determines whether the current iterator is pointing to an element in the container that is before the element that a given iterator points to.

Sobrecargas

less_than(IRandomAccessIterator<TValue>)

Determina se o iterador atual está apontando para um elemento no contêiner que está antes do elemento para o qual o iterador determinado aponta.Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

less_than(ReverseRandomAccessIterator<TValue>)

Determina se o iterador atual está apontando para um elemento no contêiner que está antes do elemento para o qual o iterador determinado aponta.Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

less_than(IRandomAccessIterator<TValue>)

Determina se o iterador atual está apontando para um elemento no contêiner que está antes do elemento para o qual o iterador determinado aponta.Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

public:
 virtual bool less_than(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public virtual bool less_than (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
abstract member less_than : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> bool
override this.less_than : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> bool
Public Overridable Function less_than (_Right As IRandomAccessIterator(Of TValue)) As Boolean

Parâmetros

_Right
IRandomAccessIterator<TValue>

Um iterador válido que aponta para o mesmo contêiner que o iterador atual.A valid iterator that points to the same container as the current iterator.

Retornos

Boolean

true se o iterador atual estiver apontando para um elemento que vem antes do elemento para o qual _Right está apontando; caso contrário, false.true if the current iterator is pointing to an element that comes before the element that _Right is pointing to; otherwise, false.

Implementações

Aplica-se a

less_than(ReverseRandomAccessIterator<TValue>)

Determina se o iterador atual está apontando para um elemento no contêiner que está antes do elemento para o qual o iterador determinado aponta.Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

public:
 bool less_than(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ _Right);
public bool less_than (Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Right);
member this.less_than : Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> -> bool
Public Function less_than (_Right As ReverseRandomAccessIterator(Of TValue)) As Boolean

Parâmetros

_Right
ReverseRandomAccessIterator<TValue>

Um iterador válido que aponta para o mesmo contêiner que o iterador atual.A valid iterator that points to the same container as the current iterator.

Retornos

Boolean

true se o iterador atual estiver apontando para um elemento que vem antes do elemento para o qual _Right está apontando; caso contrário, false.true if the current iterator is pointing to an element that comes before the element that _Right is pointing to; otherwise, false.

Aplica-se a