Deedle


Index

Namespace: Deedle
Parent Module: F# Index extensions

Type that provides a simple access to creating indices represented using the built-in LinearVector type.

Static members

Static memberDescription
ofKeys(keys)
Signature: (keys:'T list) -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and check if they are sorted or not

ofKeys(keys)
Signature: (keys:'T []) -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and check if they are sorted or not

ofKeys(keys)
Signature: keys:ReadOnlyCollection<'T> -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and check if they are sorted or not

ofUnorderedKeys(keys)
Signature: (keys:'T list) -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).

ofUnorderedKeys(keys)
Signature: (keys:'T []) -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).

ofUnorderedKeys(keys)
Signature: keys:ReadOnlyCollection<'T> -> IIndex<'T>
Type parameters: 'T

Create an index from a sequence of keys and assume they are not sorted (the resulting index is also not sorted).

Fork me on GitHub