ReverseRandomAccessIterator<TValue>.LessThanOrEqual 運算子

定義

判斷左側 Iterator 的位置是否小於或等於指定之右側 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>

要與左側 Iterator 比較的 Iterator。

傳回

如果左側的 Iterator 小於或等於指定的右側 Iterator,則為 true,否則為 false

適用於