IRandomAccessContainer<TValue> Interface

Definition

Interface for a container that supports random access iteration. Containers that implement random access iteration support the following operations: moving forward one position by calling operator++, moving backward one position by calling operator--, accessing an element by using operator[], and accessing an element by using pointer arithmetic.

C#
public interface IRandomAccessContainer<TValue>

Type Parameters

TValue

The type of an element in the controlled sequence.

Derived

Methods

at_bias(Int32)

Gets the element at the current bias of the container. The bias is the offset from the current element zero.

valid_bias(Int32)

Determines if a given bias is valid for the container. The bias is the offset from the current element zero.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1