ReverseRandomAccessIterator<TValue>.GreaterThanOrEqual 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定左侧迭代器的位置是否大于或等于给定的右侧迭代器的位置。
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
参数
要与左侧迭代器进行比较的迭代器。
返回
如果左侧迭代器大于或等于给定的右侧迭代器,则为 true
;否则为 false
。