This API is preliminary and subject to change.
Returns a vector containing the items at the specified key values.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> GetValues<K>(
IEnumerable<K> keys
)
Public Function GetValues(Of K) (
keys As IEnumerable(Of K)
) As Vector(Of T)
public:
generic<typename K>
Vector<T>^ GetValues(
IEnumerable<K>^ keys
)
member GetValues :
keys : IEnumerable<'K> -> Vector<'T>
Parameters
- keys
- Type: System.Collections.GenericIEnumerableK
A sequence of keys.
Type Parameters
- K
- The type of the keys.
Return Value
Type:
VectorTA vector containing the items at the specified
keys.
Reference