ReverseRandomAccessIterator<TValue>.LessThan Operator

定義

左側の反復子の位置が、指定された右辺反復子の位置より小さいかどうかを判断します。

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

パラメーター

_Right
ReverseRandomAccessIterator<TValue>

左側の反復子と比較する反復子。

返品

true 左側の反復子が指定された右辺反復子より小さい場合。それ以外の場合は false

適用対象