Table of Contents

Interface IReadOnlyBuffer<T>

Namespace
Gamelogic.Extensions.Algorithms
Assembly
Gamelogic.Extensions.dll

Represents a generic buffer interface that only supports reading capabilities.

public interface IReadOnlyBuffer<out T> : IEnumerable<T>, IEnumerable

Type Parameters

T
Inherited Members
Extension Methods

Properties

Capacity

Gets the maximum number of elements the buffer can hold.

Count

Gets the current number of elements in the buffer.

First

Gets the first element in the buffer.

IsFull

Gets a value indicating whether the buffer is full.

this[int]

Gets the element at the specified index.

Last

Gets the last element in the buffer.