ConstReverseRandomAccessIterator<TValue>.GreaterThanOrEqual(ConstReverseRandomAccessIterator<TValue>) 运算符
定义
确定左侧迭代器的位置是否大于或等于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is greater than or equal to the position of the given right-side iterator.
public:
bool operator >=(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ _Right);
public bool operator >= (Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> _Right);
member this.( >= ) : Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> -> bool
Public Operator >= (_Right As ConstReverseRandomAccessIterator(Of TValue)) As Boolean
参数
要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.
返回
如果左侧迭代器大于或等于给定的右侧迭代器,则为 true;否则为 false。true if the left-side iterator is greater than or equal to the given right-side iterator; otherwise, false.