Table of Contents

Class EquatableArray

Namespace
Trellis
Assembly
Trellis.Core.dll

Non-generic factory helpers for EquatableArray<T> that allow type inference.

public static class EquatableArray
Inheritance
EquatableArray
Inherited Members

Methods

Create<T>(params T[])

Creates an EquatableArray<T> from the provided items, inferring T.

public static EquatableArray<T> Create<T>(params T[] items)

Parameters

items T[]

Returns

EquatableArray<T>

Type Parameters

T

From<T>(IEnumerable<T>)

Creates an EquatableArray<T> from an enumerable of items, inferring T.

public static EquatableArray<T> From<T>(IEnumerable<T> items)

Parameters

items IEnumerable<T>

Returns

EquatableArray<T>

Type Parameters

T