ReverseRandomAccessIterator<TValue>.LessThanOrEqual(ReverseRandomAccessIterator<TValue>) 运算符

定义

确定左侧迭代器的位置是否小于或等于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is less than or equal to the position of the given right-side iterator.

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>

要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.

返回

Boolean

如果左侧迭代器小于或等于给定的右侧迭代器,则为 true;否则为 falsetrue if the left-side iterator is less than or equal to the given right-side iterator; otherwise, false.

适用于