Vector<T>.GetValues<K>(IEnumerable<K>) Method

This API is preliminary and subject to change.
Returns a vector containing the items at the specified key values.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> GetValues<K>(
	IEnumerable<K> keys
)

Parameters

keys  IEnumerable<K>
A sequence of keys.

Type Parameters

K
The type of the keys.

Return Value

Vector<T>
A vector containing the items at the specified keys.

See Also