ElementType<T> Class

Contains defaults for the specified element type of an array.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static class ElementType<T>
Inheritance
Object  →  ElementType<T>

Type Parameters

T
The element type.

Remarks

Use the ElementType<T> class to obtain default values for the element type of an array. Default values include: missing values, comparers, and equality comparers.

Fields

Comparer Gets the default comparer for the element type.
EqualityComparer Gets the default equality comparer for the element type.
HasMissingValueRepresentation Gets whether the type has a value that can represent missing values.
IsOrdered Gets whether the element type supports comparison.
MissingValue Gets the default missing value for the element type.

See Also