Table of Contents

Interface IPair<T>

Namespace
AlgorithmsSW.Buffer
Assembly
AlgorithmsSW.dll

Represents a pair of items.

public interface IPair<out T>

Type Parameters

T

The type of items in the pair.

Extension Methods

Properties

First

Gets the first item in the pair.

T? First { get; }

Property Value

T

Last

Gets the last item in the pair.

T? Last { get; }

Property Value

T