Table of Contents

Interface IReadOnlyPool<T>.IManagedInterface

Namespace
SampSharp.OpenMp.Core.Api
Assembly
SampSharp.OpenMp.Core.dll

Represents the managed interface implemented by its unmanaged counterpart.

public interface IReadOnlyPool<T>.IManagedInterface : IUnmanagedInterface
Inherited Members

Methods

Bounds(out Pair<Size, Size>)

Retrieves the bounds of the pool.

void Bounds(out Pair<Size, Size> bounds)

Parameters

bounds Pair<Size, Size>

The output parameter that will contain the bounds of the pool as a pair of sizes.

Get(int)

Gets the element at the specified index from the pool.

T Get(int index)

Parameters

index int

The index of the element to retrieve.

Returns

T

The element at the specified index.