ReverseRandomAccessIterator<TValue>.less_than Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(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(ReverseRandomAccessIterator<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.
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> -> boolPublic Overridable Function less_than (_Right As IRandomAccessIterator(Of TValue)) As BooleanParameters
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.
Implements
Applies to
less_than(ReverseRandomAccessIterator<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.
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> -> boolPublic Function less_than (_Right As ReverseRandomAccessIterator(Of TValue)) As BooleanParameters
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.