ConstReverseRandomAccessIterator<TValue>.less_than Method

Definition

Determines whether the current iterator is pointing to an element in the container that is before the element that a given iterator points to.

Overloads

less_than(ConstReverseRandomAccessIterator<TValue>)

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>)

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(ConstReverseRandomAccessIterator<TValue>)

Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

C#
public bool less_than(Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> _Right);

Parameters

_Right
ConstReverseRandomAccessIterator<TValue>

A valid iterator that points to the same container as the current iterator.

Returns

true if the current iterator is pointing to an element that comes before the element that _Right is pointing to; otherwise, false.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

less_than(IRandomAccessIterator<TValue>)

Determines whether the current iterator is pointing to an element in the container that is before the element that the given iterator points to.

C#
public virtual bool less_than(Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);

Parameters

_Right
IRandomAccessIterator<TValue>

A valid iterator pointing to the same container as the current iterator.

Returns

true if the current iterator is pointing to an element that comes before the element that _Right is pointing to; otherwise, false.

Implements

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1