IBaseIterator<TValue> Interface

Definition

Defines the base interface for all STL/CLR iterators.

generic <typename TValue>
public interface class IBaseIterator : ICloneable
public interface IBaseIterator<TValue> : ICloneable
type IBaseIterator<'Value> = interface
    interface ICloneable
Public Interface IBaseIterator(Of TValue)
Implements ICloneable

Type Parameters

TValue

The type of an element in the controlled sequence.

Derived
Implements

Methods

Clone()

Creates a new object that is a copy of the current instance.

(Inherited from ICloneable)
container()

Gets the container that the iterator is traversing.

get_bias()

Gets the bias of the iterator. The bias is the offset of the iterator from element zero.

get_node()

Gets the node, or element, that the iterator is pointing to.

next()

Increments the iterator to the next position in the underlying container, or to the first position beyond the end of container if the container has been completely traversed.

valid()

Determines whether the iterator is valid and can be safely used to traverse the underlying container.

Applies to