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

定義

前方方向でのみコンテナーにシーケンスを書き込む反復子のインターフェイス。 反復子が指す要素は、1 回だけ書き込むことができます。

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

型パラメーター

TValue

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

派生
実装

メソッド

名前 説明
Clone()

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

(継承元 ICloneable)
container()

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

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

反復子のバイアスを取得します。 バイアスは、要素 0 からの反復子のオフセットです。

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

反復子が指しているノード (または要素) を取得します。

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

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

next()

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

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

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

(継承元 IBaseIterator<TValue>)

適用対象