ReverseRandomAccessIterator<TValue>.GreaterThanOrEqual 运算符

定义

确定左侧迭代器的位置是否大于或等于给定的右侧迭代器的位置。

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

适用于