IForwardIterator<TValue> インターフェイス

定義

インクリメント演算子を使用して前方限定でコンテナーの要素にアクセスできる反復子のためのインターフェイス。 反復子が指す要素については、読み書きの両方を何回でも実行できます。 前方反復子は、入力反復子または出力反復子が必要な場所であればどこででも使用できます。

generic <typename TValue>
public interface class IForwardIterator : Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue>, Microsoft::VisualC::StlClr::Generic::IOutputIterator<TValue>
public interface IForwardIterator<TValue> : Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue>, Microsoft.VisualC.StlClr.Generic.IOutputIterator<TValue>
type IForwardIterator<'Value> = interface
    interface IInputIterator<'Value>
    interface IOutputIterator<'Value>
Public Interface IForwardIterator(Of TValue)
Implements IInputIterator(Of TValue), IOutputIterator(Of TValue)

型パラメーター

TValue

被制御シーケンス内の要素の型。

派生
実装

メソッド

Clone()

現在のインスタンスのコピーである新しいオブジェクトを作成します。

(継承元 ICloneable)
container()

反復子が走査するコンテナーを取得します。

(継承元 IBaseIterator<TValue>)
equal_to(IInputIterator<TValue>)

2 つの IInputIterator<TValue> オブジェクトが等しいかどうかを判断します。

(継承元 IInputIterator<TValue>)
get_bias()

反復子のバイアスを取得します。 バイアスとは、要素ゼロを基準とした反復子のオフセットです。

(継承元 IBaseIterator<TValue>)
get_cref()

反復子が現在指している要素への定数参照を返します。

(継承元 IInputIterator<TValue>)
get_node()

反復子が指しているノード、つまり要素を取得します。

(継承元 IBaseIterator<TValue>)
get_ref()

反復子が現在指している要素への参照を返します。

(継承元 IOutputIterator<TValue>)
next()

基になるコンテナー内の次の位置に反復子をインクリメントします。コンテナーの走査が完了した場合は、コンテナーの末尾を越えた最初の位置にインクリメントします。

(継承元 IBaseIterator<TValue>)
valid()

反復子が有効で、基になるコンテナーの走査のために安全に使用できるかどうかを判断します。

(継承元 IBaseIterator<TValue>)

適用対象